QuiCLI is a lightweight CLI framework that was intentionally designed to be used without a package manager or any external files. The built code has no dependencies and is entirely minified into a single line. Paste it on top of a new .js
file and you're ready to go! No package.json
, no node_modules
and your colleagues don't have to install any global packages making it a great cross-platform alternative to shell scripts in development environments.
When creating CLI's with QuiCLI, the goal of the program should be to assist development. It's not meant to be used to create CLI's that will eventually be provided to end-users. There are better, and more feature-rich CLI frameworks that can help you achieve that goal.
- Simply copy and paste the contents of the
lib/quicli.min.js
file in this repository to a new.js
file. - On a new line below the pasted contents, add some commands (Check the examples below).
- Run your CLI with
node myapp mycommand
.
cli.addCommand("foo.bar", (flags) => {
cli.log("Hello world!");
})
> node myapp foo bar
Hello world!
cli.addCommand("foo", (flags) => {
cli.log(flags.bar[0], "is a nice number!");
})
.addFlag("bar", "number", true) // Name, Type, Required
> node myapp foo
Missing flag: bar
> node myapp foo --bar hello
Incorrect type: bar must be a number!
> node myapp foo --bar 24
24 is a nice number!
cli.addCommand("foo", async (flags) => {
const answer = await cli.question("What's up?");
cli.log("Your answer: " + answer);
})
> node myapp foo
What's up? Nothing much...
Your answer: Nothing much...
cli.addCommand("ping", (flags) => {
cli.log(
$.BOLD +
$.RED + "P" +
$.YELLOW + "O" +
$.GREEN + "N" +
$.BLUE + "G" +
$.MAGENTA + "!"
);
})
Documentation can be found on the projects website.