## 硬件和系统环境
#### Mac 10.13.+
#### Dell Ubuntu 16.04
## 软件环境
#### WebStorm 2017.3.+
#### node 8.0.0
## 框架环境
#### react 15.6.1
#### react-router 4.1.2
#### redux 5.0.5
#### Webpack 3.5.1
## 配置
### [Homebrew](https://brew.sh/index_zh-cn)安装
> /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
### node安装
#### npm install npm@latest -g
### 安装yarn :
~~~
npm -g install yarn
~~~
#### 设置源
~~~
yarn config set registry http://registry.npm.taobao.org
~~~
### create-react-app安装
#### npm install -g create-react-app
~~~
create-react-app test-app
cd test-app
yarn install
yarn build
yarn start
~~~