美文网首页
npm操作常用命令及以express为例进行安装卸载

npm操作常用命令及以express为例进行安装卸载

作者: 拓跋123 | 来源:发表于2018-04-06 13:16 被阅读14次

npm有两种安装模式
“本地安装模式”和“全局安装模式”

npm 更新本身(全局)

npm install npm -g

安装express

npm install express -g

卸载express(如果安装时是全局安装的,那么卸载时也要-g)

npm uninstall express -g

查找包

npm search express

查看帮助

npm help

查看具体命令的使用(以install为例)

npm help install

相关文章

网友评论

      本文标题:npm操作常用命令及以express为例进行安装卸载

      本文链接:https://www.haomeiwen.com/subject/topdhftx.html