其他分享
首页 > 其他分享> > npm常用命令:init、install、uninstall、help

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

作者:互联网

npm官网

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

在这里插入图片描述

npm升级

在这里插入图片描述

npm常用命令


在这里插入图片描述

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 --help

在这里插入图片描述

npm 命令名 --help

在这里插入图片描述

 

标签:npm,包名,help,--,init,install,简写,uninstall
来源: https://blog.51cto.com/u_7692005/3001913