ke-create-node-cli
Version:
CLI to create Node JS CLIs
66 lines (52 loc) • 1.36 kB
Markdown

<p align="center">📟 CLI to create Node.js CLI applicataions.</p>
# ke-create-node-cli
<ul>
<li>📤 Create a Node.js CLI in no time</li>
<li>🤖 Automatic argument parsing, help text, and welcome message and guide to create your CLI app</li>
<li>📖 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
```