开发环境准备
你需要预先安装的软件:
- 运行环境:Node.js
- 代码编辑器:Visual Studio Code
配置 Node.js
安装完成 Node.js 之后,在命令行内键入:
shell
# 12.16.1 或类似版本号输出
node -v
# 6.13.4 或类似版本号输出
npm -v
安装 yarn(可选)
请参考 yarn 官方文档
配置镜像加速下载
由于众所周知的原因,在国内使用 NPM/YARN 下载包的时候速度非常缓慢,我们只需要这一行命令即可配置成国内镜像节点来达到加速下载的目的:
- npm
- yarn
shell
# 配置镜像
npm config set registry https://registry.npm.taobao.org
# 查看当前镜像地址
npm config get registry
# 取消镜像
npm config delete registry
shell
# 配置镜像
yarn config set registry https://registry.npm.taobao.org/
# 查看当前镜像地址
yarn config get registry
# 取消镜像
yarn config delete registry