UNPKG

ke-create-node-cli

Version:
66 lines (52 loc) 1.36 kB
![ke-create-node-cli](https://user-images.githubusercontent.com/24629158/111557823-c9146080-8763-11eb-88da-82895de31991.png) <p align="center">📟 &nbsp;CLI to create Node.js CLI applicataions.</p> # ke-create-node-cli <ul> <li>📤 &nbsp;Create a Node.js CLI in no time</li> <li>🤖 &nbsp;Automatic argument parsing, help text, and welcome message and guide to create your CLI app</li> <li>📖 &nbsp; History to maintain the last input data like the Author name, email, and URL</li> </ul> # Install ```javascript // Recommended. npx ke-create-node-cli // OR an alternative global install. npm install -g ke-create-node-cli ``` # Usage <p>In your terminal, just run the CLI</p> ```javascript npx ke-create-node-cli // Or if you have globally installed it ke-create-node-cli // Or command alias for global install ncli ``` <p>Next, answer the following questions to generate a Node.js CLI.</p> ```javascript CLI name? CLI command? CLI description? CLI version? CLI license? CLI author name? CLI author email? CLI author URL? ``` ### Basic Usage: <hr> ```javascript create-node-cli <command> [option] ``` ### Commands: <hr> ```javascript help Print help info ``` ### Options: <hr> ```javascript -c, --clear Clear the console Default: true -d, --debug Print debug info Default: false -v, --version Print CLI version Default: false ```