Skip to content

Hancoson/react-mobx-demo

Repository files navigation

React-Mobx Zhihu Daily

GitHub package version GitHub license Travis Github All Releases

中文🇨🇳

If something doesn’t work, please file an issue.

Tech used

  • React v15
  • Mobx v2.5
  • Mobx-react
  • React-router v4
  • mobx-react-router v4
  • antd v2
  • react-scripts
  • create-react-app
  • ……

How to run

  • Install: npm install(yarn)
  • Run: npm start Then open http://localhost:3000 to see the app.
  • Build: npm run build

Tree

├─config
├─src
│  ├─assets
│  │  ├─img
│  │  └─styles
│  ├─compontens
│  ├─config
│  ├─routes
│  ├─store
│  └─utils
└─build

API

This app ues the [ZhiHu Daily API], go to see the API.

Get data

  • 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'

How to use Mobx(Decorators)

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'),