title: nodejs安装 date: 2024-02-11 12:12:12 tags: 环境配置


nodejs安装

npm 安装依赖的时候发现过期了(版本更新的真快啊), 记录一下流程

前往 nodejs download 安装新版 nodejs

安装在 D:\nodejs

node -v

进入 nodejs/ 并新建 node_globalnode_cache 目录, 以防把垃圾安装在 C 盘

npm config set prefix "D:\nodejs\node_gobal"
npm config set cache "D:\nodejs\node_cache"

D:\nodejs\node_gobal 加入环境变量

换源

原先的淘宝源失效了

npm install -g pnpm
npm config set registry https://registry.npmmirror.com

pnpm config set registry https://registry.npmmirror.com

参考

zood