## 硬件和系統環境
#### 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
~~~