npm基本命令
install
安装模块
1 | npm install |
具体请参考官方的文档,比较详细。
这里列出几个常用的
1 | npm install #不带参数,会根据当前目录的package.json来安装依赖 |
uninstall
1 | npm uninstall #参数跟install对应 |
outdated
输出需要update的模块
-g
:全局
1 | npm -g outdated |
输出:
1 | Package Current Wanted Latest Location |
update
更新
1 | npm update [-g] [<pkg>...] |
start
用于执行package.json里面声明的start脚本。
比如package.json里面有。
1 | { |
1 | npm start |
这样就执行了node app.js