Loading

Nodejs 安装后的小配置

Nodejs 安装小配置

配置 npm

  1. 配置全局安装位置和缓存路径位置
npm config set prefix "D:\Environment\node\node_global"
npm config set cache "D:\Environment\node\node_cache"
  1. 配置npm​仓库镜像
# 设置淘宝源
npm config set registry https://registry.npm.taobao.org --global

# 恢复官方源
npm config set registry https://registry.npmjs.org/
posted @ 2023-08-25 18:19  Regnx  阅读(38)  评论(0)    收藏  举报