我想集成一个外部命令在我的 npm package 里面,Just like this : xxx init,xxx login
1
flowfire 2017-12-22 16:48:55 +08:00 1
比如你想让 test init 调用 index.js
就在 package.json 里加上 "bin": { "test": "index.js" } 然后发布到 npm 上。这样别人如果用 -g 参数安装你的模块,就可以使用 test 命令调用 index.js 文件 如果你想在本地测试,使用 npm link 命令把本地的包软连接到全局即可 |