React学习相关资料

官网

https://reactjs.org/

教程

还是直接看官网的,阮的有点老了,比如,createClass在最新版React废弃了

  • 官网: https://reactjs.org/docs/installation.html

  • 阮一峰文章: https://github.com/ruanyf/react-demos

React router

React router 几个版本,我们以后统一使用最新 V4 版本来开发。

  • https://github.com/ReactTraining/react-router

  • https://medium.com/@pshrmn/a-simple-react-router-v4-tutorial-7f23ff27adf

  • https://reacttraining.com/react-router/web/guides/philosophy

UI 框架

  • 淘宝的 atn.design 国内有名,大而全基本能满足,学习时候看官方教程即可

    https://ant.design/index-cn

ES6学习

定义

ECMAScript 6 == ES6,详情查看 WiKi
https://en.wikipedia.org/wiki/ECMAScript

教程

  • http://es6.ruanyifeng.com/

    (ECMAScript 6 入门有实体书,线上中文版排版也不错)

  • https://github.com/bevacqua/es6

实时调试

  • 最新的版的 Chrome console 基本支持 ES6 的新功能了

  • babel 在线的 REPL 基本支持最新的特性,包括 JSX

    http://babeljs.io/repl/

你可能感兴趣的:(React学习相关资料)