中文🇨🇳
If something doesn’t work, please file an issue.
- React v15
- Mobx v2.5
- Mobx-react
- React-router v4
- mobx-react-router v4
- antd v2
- react-scripts
- create-react-app
- ……
- Install:
npm install(yarn)
- Run:
npm start
Then open https://localhost:3000 to see the app. - Build:
npm run build
├─config
├─src
│ ├─assets
│ │ ├─img
│ │ └─styles
│ ├─compontens
│ ├─config
│ ├─routes
│ ├─store
│ └─utils
└─build
This app ues the [ZhiHu Daily API], go to see the API.
- Use the Yahoo service cross-domain
YAHOO:'https://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20json%20where%20url=%22',
YAHOO_SUFFIX:'%22&format=json'
I use the
creat-react-app
to creat my app.
You can add the transform-decorators-legacy
yourself in node_modules/react-scripts/config/babel.dev.js
and babel.prod.js
,like this:
- add this code into
presets
:
require.resolve('babel-preset-stage-1'),
require.resolve('babel-preset-es2015')
- add this code into
plugins
first line:
require.resolve('babel-plugin-transform-decorators-legacy'),