暗黑模式
快速开始
NodeJS
准备 NodeJS 开发环境
方式一: standalone pnpm
TIP
- 使用
pnpm
作为 NodeJS 版本管理工具以及包管理工具 - 优势:
- 对国内网络友好
- 适合新机(没有安装过任何 NodeJS 软件的),一个
pnpm
搞定两个难题:版本管理工具以及包管理工具
- 参考 standalone pnpm
安装 standalone pnpm
bash
# use curl
curl -fsSL https://get.pnpm.io/install.sh | sh -
# use wget
wget -qO- https://get.pnpm.io/install.sh | sh -
1
2
3
4
2
3
4
bash
# bash
wget -qO- https://get.pnpm.io/install.sh | ENV="$HOME/.bashrc" SHELL="$(which bash)" bash -
# sh
wget -qO- https://get.pnpm.io/install.sh | ENV="$HOME/.shrc" SHELL="$(which sh)" sh -
# dash
wget -qO- https://get.pnpm.io/install.sh | ENV="$HOME/.dashrc" SHELL="$(which dash)" dash -
1
2
3
4
5
6
2
3
4
5
6
配置 pnpm
bash
# 配置镜像地址: 提高 `pnpm install` 下载速度和稳定性
pnpm config set registry https://registry.npmmirror.com
1
2
2
安装 NodeJS
bash
# Node version manager
pnpm env use --global lts
pnpm env use --global 22
node -v
npm -v
cd your-project
pnpm install
pnpm dev
pnpm build
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
方式二:nvm
fnm
WARNING
需要翻墙