Skip to content

Latest commit

 

History

History
69 lines (41 loc) · 1.43 KB

前端环境.md

File metadata and controls

69 lines (41 loc) · 1.43 KB

前端环境

开发环境

安装 node 

  • 使用 nvm 安装。(推荐)

使用nvm 安装 node 。可以同时安装多个版本的node。 方便 node 版本间的切换。

maclinux 安装 nvm :

# 使用 curl
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash
# 或 wget 安装
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash

# 在 ~/.bash_profile、~/.zshrc、 ~/.profile、 或 ~/.bashrc 添加配置文件
export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"

windows 安装 nvm :

直接下载安装包安装。安装包下载 nvm-windows

安装完成后,可以执行 nvm 命令对 node 进行管理。

# 使用nvm安装node
nvm install 
  • 直接安装。

直接在[nodejs]官网找到对应的平台安装包下载安装。

  • 使用 yarn 或 npm 包管理工具时,设置镜像加速。
# 设置镜像
# npm
npm config set registry https://registry.npm.taobao.org 
# yarn
yarn config set registry https://registry.npm.taobao.org


# 检查是否设置成功
npm config get registry
# yarn
yarn config get registry

项目地址

辅助平台地址

  • Sentry
  • Yapi
  • 代码扫描