Node基础
# 一、配置node环境
1)安装node
使用scoop安装node
$ scoop install nodejs-lts
1
2)配置node
# 配置
$ npm config set prefix "D:\Code\DevEnv\node\node_global"
$ npm config set cache "D:\Code\DevEnv\node\node_cache"
$ npm install -g cnpm --registry=https://registry.npm.taobao.org
$ npx nrm use taobao
# 以下方式切换回官方源
$ npx nrm use npm
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
上次更新: 2021/06/21, 02:06:00