nodejs安装及初始化设置
上班的电脑没有管理员权限,想安装nodejs,安装不了,改为免安装版本。
1.官方下载免安装版本,解压到本地
2.把解压路径根目录,加到Path
中,并在根目录分别创建两个文件夹:node-cache
和node-global
3.命令行下执行,并设置国内淘宝源
npm config set prefix "D:\Program\node-v12.13.1-win-x64\node-global"
npm config set cache "D:\Program\node-v12.13.1-win-x64\node-cache"
## 设置国内淘宝源
npm config set registry https://registry.npm.taobao.org
## 验证结果
npm config get registry
npm info express