1.1.2 • Published 6 years ago
@ghabriel/z-script v1.1.2
Z-Script
A set of utilities that make it easy to create command-line scripts.
Installation
You can install Z-Script by running:
npm install --save-dev @ghabriel/z-scriptYou may also want to install it globally to be able to use zsc directly without npx:
npm install -g @ghabriel/z-scriptUsage
Create a file named zscript.ts or a folder named zscript with a main.ts file in your project. You can run it directly by running this at its directory:
# if zsc is installed globally
zsc [args...]
# if zsc is only installed locally
npx zsc [args...]Syntax examples can be found in src/examples.ts.