赞
踩
点击 网盘下载 进行下载
win + R
,输入cmd
,回车后,在命令行输入nvm root
命令,可以查看nvm的安装根路径在那个文件夹root
地址,找到setting.txt
文件并打开- node_mirror: https://npmmirror.com/mirrors/node/
- npm_mirror: https://npmmirror.com/mirrors/npm/
我的电脑->属性->高级系统设置->环境变量->
win + R
,输入cmd
,回车后,在命令行输入nvm -v
命令,返回版本号,证明配置成功。nvm list available
nvm install 10.23.0
nvm list
或 nvm ls
nvm use 18.15.0
node -v
查看node的版本、npm -v
查看npm的版本node_global
和node_cache
- npm config set prefix "D:\software\nvm\node_global"
- npm config set cache "D:\software\nvm\node_cache"
NODE_PATH
,值为D:\software\nvm\node_global\node_modules
,其中D:\software\nvm\node_global\node_modules
是上述创建的全局模块安装路径文件夹npm install express -g
express
的文件- npm config set registry https://registry.npmmirror.com/
-
- npm config get registry
- npm install -g cnpm --registry=https://registry.npmmirror.com/
-
- 或
-
- npm install -g cnpm
- cnpm -v
-
- npm list cnpm -g
npm install yarn -g
- // 查看镜像
- yarn config get registry
- // 修改镜像
- yarn config set registry http://registry.npm.taobao.org/
小编全局安装了cnmp、expo-cli、express、vue、yarn
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。