npm 国内镜像与国外镜像

  1. 修改 下载仓库为淘宝镜像
  npm config set registry https://registry.npm.taobao.org --global

  npm config set disturl https://npm.taobao.org/dist --global
  1. 如果要发布自己的镜像需要修改回来
  npm config set registry https://registry.npmjs.org/
  1. 安装cnpm
  npm install -g cnpm --registry=https://registry.npm.taobao.org
  1. 查看当前地址
  npm config list
  1. npm的命令
  - npm -v 查看npm的版本
  - npm version 查看所有模块的版本
  - npm search 包名 搜索包
  - npm install / i 包名 安装包
  - npm remove / r 包名 删除包
  - npm install 包名 --save 安装包并添加到依赖中 *****
  - npm install 下载当前项目所依赖的包
  - npm install 包名 -g 全局安装包(全局安装的包一般都是一些工具)

安装nrm

  • nrm(npm registry manager )是npm的镜像源管理工具,有时候国外资源太慢,使用这个就可以快速地在 npm 源间切换 在控制台按下面输入命令:
npm i -g nrm    
nrm ls  
nrm use taobao 

其中执行命令nrm ls查看可选的源带*的是当前使用的源,use命令可以切换源。