Linux
# install Node.js
brew install node
# set npm mirror
npm config set registry https://registry.npmmirror.com
# install pnpm
npm install --global pnpm
# set pnpm mirror
pnpm config set registry https://registry.npmmirror.com
# restore pnpm mirror
pnpm config set registry https://registry.npmjs.org
macOS
# install Node.js
brew install node
# set npm mirror
npm config set registry https://registry.npmmirror.com
# install pnpm
npm install --global pnpm
# set pnpm mirror
pnpm config set registry https://registry.npmmirror.com
Windows
# install Node.js
scoop install nodejs
# set npm mirror
npm config set registry https://registry.npmmirror.com
# install pnpm
npm install --global pnpm
# set pnpm mirror
pnpm config set registry https://registry.npmmirror.com