安装 Scoop

安装 Node.js

安装 yarn

npm install -g yarn

配置镜像

<aside> 💡 也可以考虑安装 cnpm: npmmirror.com ,或者不配置镜像的情况下配置代理到 Clash(略)

$ npm install -g cnpm --registry=https://registry.npmmirror.com

</aside>

NPM

查询当前镜像

npm get registry

设置为淘宝镜像

npm config set registry <https://registry.npmmirror.com>

设置为官方镜像

npm config set registry <https://registry.npmjs.org/>

YARN

查询当前镜像

yarn config get registry

设置为淘宝镜像

yarn config set registry <https://registry.npmmirror.com>