cxini-cli
v1.1.4
Published
这是脚手架工具
Readme
私有脚手架搭建
Commander 英语构建命令行工具的 npm 库。
inquirer 是一个命令行交互工具
ora 命令行加载动画 npm 库
download-git-repo 用于下载 git 仓库的 npm 库。
编写脚手架 Cli
- 自定义命令 而不是 node 去执行我们的脚本
#!/user/bin/env node
//告诉操作系统执行自定义命令的时候 帮我使用node去执行
"bin": {
"pc-cli": "src/index.js"
}-V --help create 命令行交互工具
-1.使用 commander -1. import { program } from "commander"
