npm安装设置
Posted shichangchun
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了npm安装设置相关的知识,希望对你有一定的参考价值。
查看npm配置
npm config list
查看npm镜像registry地址
npm config get registry
https://registry.npmjs.org/
1 临时使用其他镜像安装 express
npm install express --registry https://registry.npm.taobao.org
2 更改镜像地址(持久使用)
npm config set registry https://registry.npm.taobao.org
3通过cnpm使用
npm install -g cnpm --registry=https://registry.npm.taobao.org
使用 cnpm install express
以上是关于npm安装设置的主要内容,如果未能解决你的问题,请参考以下文章
Windows 10 下安装 npm 后全局 node_modules 和 npm-cache 文件夹的设置