#prompt #console #cli #terminal #command-line #npm-package

cliclack

Beautiful, minimal, opinionated CLI prompts inspired by the Clack NPM package

22 releases

0.3.2 Jul 8, 2024
0.2.5 Apr 11, 2024
0.1.13 Feb 27, 2024
0.1.10 Dec 20, 2023
0.1.6 Jul 23, 2023

#57 in Command-line interface

Download history 1337/week @ 2024-04-04 1037/week @ 2024-04-11 863/week @ 2024-04-18 750/week @ 2024-04-25 838/week @ 2024-05-02 1270/week @ 2024-05-09 928/week @ 2024-05-16 722/week @ 2024-05-23 868/week @ 2024-05-30 1063/week @ 2024-06-06 1434/week @ 2024-06-13 1457/week @ 2024-06-20 1913/week @ 2024-06-27 2318/week @ 2024-07-04 1093/week @ 2024-07-11 1491/week @ 2024-07-18

7,056 downloads per month
Used in 14 crates

MIT license

255KB
2K SLoC

CliClack Logo

Effortlessly build beautiful command-line apps with Rust 🦀✨

github.com crates.io docs.rs license

Beautiful, minimal, opinionated CLI prompts inspired by the @clack/prompts npm package.

cargo add cliclack

cliclack in action

cargo run --example basic
cargo run --example log
CliClack Example

💎 Fancy minimal UI
✅ Simple API
🎨 Theme support

Setup

The intro and outro/outro_cancel functions will print a message to begin and end a prompt session respectively.

use cliclack::{intro, outro};

intro("create-my-app")?;
// Do stuff
outro("You're all set!")?;

Input

The input prompt accepts a single line of text trying to parse it into a target type. Multiline input can be enabled using the multiline() switch.

use cliclack::input;

let path: String = input("Where should we create your project?")
    .placeholder("./sparkling-solid")
    .validate(|input: &String| {
        if input.is_empty() {
            Err("Please enter a path.")
        } else if !input.starts_with("./") {
            Err("Please enter a relative path")
        } else {
            Ok(())
        }
    })
    .interact()?;

🎨 Theme

A custom theme can be applied for UI rendering. An example of theme customization:

cargo run --example theme
CliClack Magenta Theme

🚥 Progress Bar

Starting from cliclack = "0.2.3", progress bars and multi-progress bars are supported.

CliClack Multi Progress Bar

See more

Dependencies

~2.1–9.5MB
~85K SLoC