npm常用命令:init、install、uninstall、help

npm官网

也可以自己发包到该网站,供别人下载。

npm常用命令:init、install、uninstall、help

npm升级

npm常用命令:init、install、uninstall、help

npm常用命令


npm常用命令:init、install、uninstall、help

npm init

生成package.json包管理文件。

npm init -y

npm install

npm install

一次性将package.json文件中dependencies中的依赖项全部安装。

npm install
#简写
npm i

npm install 包名

只是下载包,并不将包保存到package.json文件中。

npm install 包名
#简写
npm i 包名

npm install --save 包名

下载且保存依赖到package.json文件中的depdencies中。

npm install --save 包名
#简写
npm i -S 包名

npm uninstall 包名

移除包。

npm uninstall 包名

只是删除包,如果有依赖项会依然保存。

npm uninstall 包名
#简写
npm un 包名

npm uninstall --save 包名

删除的同时也会将依赖项清除。

npm uninstall --save 包名
#简写
npm un -S 包名

npm help

npm常用命令:init、install、uninstall、help

npm --help

npm常用命令:init、install、uninstall、help

npm 命令名 --help

npm常用命令:init、install、uninstall、help

 

上一篇:oeasy教您玩转vim - 2 - # 使用帮助


下一篇:9.19