zors
zors copied to clipboard
A next-gen framework for type-safe command-line applications
Support for stdin piping would be cool example, ```sh echo "index.js index.html styles.css" | node cli.js add ``` This should treat the stdin stream which is piped using `|` sign...
Would be cool to to `.addHook` on a command to intercept its lifecycle and maybe do some modifications at runtime. ```js command.addHook("pre", (args, options, tools) => { console.log("This command is...
The current parser is a fork of Deno's std/flags parser. However it does not support variadic options out of the box ```sh cli add --files app.js index.html styles.css --no-commit ```...