npm
查看镜像源
1 | # npm config (set | get | delete | list | edit) |
使用
临时使用镜像
1 | npm install --registry=https://registry.npmmirror.com pkg_name -g cnpm |
全局配置
1 | # npm |
yarn
查看镜像源
1 | # yarn config (set | get | delete | list | current) |
使用
1 | # **临时使用镜像** |
yarn
使用
1 | # 初始化项目 |
补充
常用淘宝镜像
npm
1 | npm install phantomjs --phantomjs_cdnurl=http://npm.taobao.org/mirrors/phantomjs |
yarn
1 | yarn config set disturl https://npm.taobao.org/dist -g |
npm与yarn安装命令的对比
npm | yarn |
---|---|
npm install | yarn [install] |
npm ci | yarn [install] --frozen-lockfile |
npm install --save | yarn add |
npm install --save-dev | yarn add -dev/[-D] |
npm install --save-peer | yarn add --peer/[-P] |
npm install --save-peer | yarn add --optional/[-O] |
npm uninstall --save | yarn remove |