zors icon indicating copy to clipboard operation
zors copied to clipboard

A next-gen framework for type-safe command-line applications

Results 3 zors issues
Sort by recently updated
recently updated
newest added

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...

enhancement

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 ```...