Node.js:运行于服务端的JavaScript解释器,是一个开源和跨平台的 JavaScript 运行时环境,
官方:https://nodejs.org/download/release/
查询版本
配置源
1 2 3 4
| //华为云镜像源 npm config set registry https://mirrors.huaweicloud.com/repository/npm/ //查询 npm config get registry
|
配置缓存路径
1 2 3 4 5 6
| npm config set prefix "D:\node_global" npm config set cache "D:\node_cache" //查询 npm config get cache npm config get prefix
|
配置代理
1 2 3 4 5
| npm config set proxy http://127.0.0.1:1080 npm config set https-proxy http://127.0.0.1:1081 //查询 npm config get proxy npm config get https-proxy
|
查看npm配置信息