前言
安装cnpm和安装依赖可以通过下面语句实现
npm install -g cnpm
cnpm install
但是在yeoman(node的脚手架框架),安装依赖执行的是npm,如果要用到cnpm可以通过修改npm的景象地址的方式
得到原来镜像地址
npm get registry
# https://registry.npmjs.org/
设成淘宝的
npm config set registry http://registry.npm.taobao.org/
设成npm的
npm config set registry https://registry.npmjs.org/