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有两种安装模式
“本地安装模式”和“全局安装模式”
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
网友评论