nv-cli-cliproj
v1.0.12
Published
nv-cli-cliproj ========== - very simple cli-tool - create a mini node-cli-only-project template
Downloads
16
Readme
nv-cli-cliproj
- very simple cli-tool
- create a mini node-cli-only-project template
install
- npm install nv-cli-cliproj -g
usage
Usage: nv_cli_cliproj [options]
Options:
-p, --pkg_name package name in package.json
-b, --bin_name bin name in package.json.bin
-h, --help usage
example
# nv_cli_cliproj -p nv-cli-simple-routes -b nv_cli_sroute
# tree nv-cli-simple-routes/
nv-cli-simple-routes/
├── cli.js
├── index.js
├── package.json
└── README.md
0 directories, 4 files
nv-cli-cliproj# cat nv-cli-simple-routes/package.json
{
"dependencies": {
"nv-cli-basic": "^1.0.5"
},
"name": "nv-cli-simple-routes",
"description": "",
"version": "1.0.1",
"main": "index.js",
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"nv_cli_sroute": "cli.js"
},
"author": "",
"license": "ISC"
}
LICENSE
- ISC