首先介绍如何使用淘宝源安装软件
- 临时使用
npm --registry https://registry.npm.taobao.org install express - 永久使用
npm config set registry https://registry.npm.taobao.org - cnpm
npm install -g cnpm --registry=https://registry.npm.taobao.org (安装cnpm)
cnpm install express (使用cnpm)
上述内容应用了博客http://blog.csdn.net/quuqu/article/details/64121812
然后介绍如何通过npm安装指定版本软件
npm install express@2
就是安装第二版的express的意思
最后将两者结合使用
可以通过临时使用的方式来说明:
npm --registry https://registry.npm.taobao.org install express@2
就是这么简单,如果有什么问题,可以留言告诉我。