@miney/cli
v0.0.0-alpha.1
Published
`pakeage.json` ``` { "bin":{ "commandName": "./bin/index.js" } } ``` `./bin/index.js` ``` #!/usr/bin/env node console.log('Hello World!'); ``` 根目录`cmd`: ``` npm link commandName > Hello World! npm unlink ```
Downloads
3
Readme
脚手架
声明命令
pakeage.json
{
"bin":{
"commandName": "./bin/index.js"
}
}
./bin/index.js
#!/usr/bin/env node
console.log('Hello World!');
根目录cmd
:
npm link
commandName
> Hello World!
npm unlink
核心模块
- 命令参数模块
- 用户交互模块
- 文件拷贝模块
- 文件生成模块
- 依赖安装模块