Npm常用操作命令及淘寶鏡像配置
npm 官方網(wǎng)站 https://www.npmjs.com/
查看當前npm版本:
npm --version
升級npm 升級自己:
npm install --global npm
跳過向?qū)ФΨ焖偕?package.json:
npm init
->npm init -y
將package.json 中的依賴項(dependencies):
npm install
->npm i
下載指定包侈咕,并保存依賴項:
npm install --save 包名
->npm i -S 包名
只刪除 node_moudle 中的指定包:
npm uninstall 包名
->npm un 包名
刪除包的同時也將依賴項中的信息刪除:
npm uninstall --save 包名
->npm un -S 包名
查看使用幫助:
npm help
查看指定命令的使用方式:
npm 命令 --help
忘記怎么刪包的命令怜珍,
npm uninstall --help
查看使用幫助
解決 npm 被墻的問題
-
安裝 cnpm 淘寶鏡像 http://npm.taobao.org/
- 安裝淘寶的 cnpm
npm install --global cnpm
- 使用cnpm裝包
cnpm install 包名
- 安裝淘寶的 cnpm
-
不裝 cnpm 又用淘寶服務器下載
npm config set registry https://registry.npm.taobao.org
注:查看 npm 配置信息 npm config list