研发前端基本环境安装
- 编辑器IDE: webstorm、sublime等;并把常用的插件安装好
- PS安装;(安装相关切图插件如Cutman)
- APMserver(可选) (php+mysql+apche集成软件)
- git安装;(安装图形化界面 Git Extensions)
- nodejs安装
- 安装淘宝镜像源
npm config set registry https://registry.npm.taobao.org --global
npm config set disturl https://npm.taobao.org/dist --global
- 安装 yarn
npm i -g yarn
- 安装完 yarn 后同理也要设置镜像源
yarn config set registry https://registry.npm.taobao.org --global
yarn config set disturl https://npm.taobao.org/dist --global