[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-3217":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":10,"language":11,"languages":10,"totalLinesOfCode":10,"stars":12,"forks":13,"watchers":14,"openIssues":15,"contributorsCount":16,"subscribersCount":16,"size":16,"stars1d":16,"stars7d":16,"stars30d":17,"stars90d":16,"forks30d":16,"starsTrendScore":16,"compositeScore":18,"rankGlobal":10,"rankLanguage":10,"license":19,"archived":20,"fork":20,"defaultBranch":21,"hasWiki":22,"hasPages":20,"topics":23,"createdAt":10,"pushedAt":10,"updatedAt":24,"readmeContent":25,"aiSummary":26,"trendingCount":16,"starSnapshotCount":16,"syncStatus":27,"lastSyncTime":28,"discoverSource":29},3217,"react-developer-roadmap","adam-golab\u002Freact-developer-roadmap","adam-golab","Roadmap to becoming a React developer","",null,"JavaScript",18931,2002,577,22,0,4,44.91,"Other",false,"master",true,[],"2026-06-12 02:00:47","# React Developer Roadmap\n\n[README in Chinese](README-CN.md)\n\n[README in Japanese](README-JA.md)\n\n[README in Korean](README-KO.md)\n\n[README in Portuguese (Brazil)](README-PTBR.md)\n\n[README in Russian](README-RU.md)\n\n[README in Spanish](README-ES.md)\n\n> Roadmap to becoming a React developer in 2019:\n\nBelow you can find a chart demonstrating the paths that you can take and the libraries that you would want to learn to become a React developer. I made this chart as a tip for everyone who asks me, \"What should I learn next as a React developer?\"\n\n## Disclaimer\n> The purpose of this roadmap is to give you an idea about the landscape. The road map will guide you if you are confused about what to learn next, rather than encouraging you to pick what is hip and trendy. You should grow some understanding of why one tool would be better suited for some cases than the other and remember hip and trendy does not always mean best suited for the job\n\n## Roadmap\n\n![Roadmap](.\u002Froadmap.png)\n\n## Resources\n\n1. Basics\n    1. HTML\n        * Learn the basics of HTML\n        * Make a few pages as an exercise\n    2. CSS\n        * Learn the basics of CSS\n        * Style pages from previous step\n        * Build a page with grid and flexbox\n    3. JS Basics\n        * Get familiar with the syntax\n        * Learn basic operations on DOM\n        * Learn mechanisms typical for JS (Hoisting, Event Bubbling, Prototyping)\n        * Make some AJAX (XHR) calls\n        * Learn new features (ECMA Script 6+)\n        * Additionally, get familiar with the jQuery library\n2. General Development Skills\n    1. Learn GIT, create a few repositories on GitHub, share your code with other people\n    2. Know HTTP(S) protocol, request methods (GET, POST, PUT, PATCH, DELETE, OPTIONS)\n    3. Don't be afraid of using Google, [Power Searching with Google](http:\u002F\u002Fwww.powersearchingwithgoogle.com\u002F)\n    4. Get familiar with terminal, configure your shell (bash, zsh, fish)\n    5. Read a few books about algorithms and data structures\n    6. Read a few books about design patterns\n3. Learn React on [official website](https:\u002F\u002Freactjs.org\u002Ftutorial\u002Ftutorial.html) or complete some [courses](https:\u002F\u002Fegghead.io\u002Fcourses\u002Fthe-beginner-s-guide-to-react)\n4. Get familiar with tools that you will be using\n    1. Package Managers\n        * [npm](https:\u002F\u002Fwww.npmjs.com\u002F)\n        * [yarn](https:\u002F\u002Fyarnpkg.com\u002Flang\u002Fen\u002F)\n        * [pnpm](https:\u002F\u002Fpnpm.js.org\u002F)\n    2. Task Runners\n        * [npm scripts](https:\u002F\u002Fdocs.npmjs.com\u002Fmisc\u002Fscripts)\n        * [gulp](https:\u002F\u002Fgulpjs.com\u002F)\n    * [Webpack](https:\u002F\u002Fwebpack.js.org\u002F)\n    * [Rollup](https:\u002F\u002Frollupjs.org\u002Fguide\u002Fen)\n    * [Parcel](https:\u002F\u002Fparceljs.org\u002F)\n5. Styling\n    1. CSS Preprocessor\n        * [Sass\u002FCSS](https:\u002F\u002Fsass-lang.com\u002F)\n        * [PostCSS](https:\u002F\u002Fpostcss.org\u002F)\n        * [Less](http:\u002F\u002Flesscss.org\u002F)\n        * [Stylus](http:\u002F\u002Fstylus-lang.com\u002F)\n    2. CSS Frameworks\n        * [Bootstrap](https:\u002F\u002Fgetbootstrap.com\u002F)\n        * [Materialize](https:\u002F\u002Fmaterializecss.com\u002F), [Material UI](https:\u002F\u002Fmaterial-ui.com\u002F), [Material Design Lite](https:\u002F\u002Fgetmdl.io\u002F)\n        * [Bulma](https:\u002F\u002Fbulma.io\u002F)\n        * [Semantic UI](https:\u002F\u002Fsemantic-ui.com\u002F)\n    3. CSS Architecture\n        * [BEM](http:\u002F\u002Fgetbem.com\u002F)\n        * [CSS Modules](https:\u002F\u002Fgithub.com\u002Fcss-modules\u002Fcss-modules)\n        * [Atomic](https:\u002F\u002Facss.io\u002F)\n        * [OOCSS](https:\u002F\u002Fgithub.com\u002Fstubbornella\u002Foocss\u002Fwiki)\n        * [SMACSS](https:\u002F\u002Fsmacss.com\u002F)\n        * [SUITCSS](https:\u002F\u002Fsuitcss.github.io\u002F)\n    4. CSS in JS\n        * [Styled Components](https:\u002F\u002Fwww.styled-components.com\u002F)\n        * [Radium](https:\u002F\u002Fformidable.com\u002Fopen-source\u002Fradium\u002F)\n        * [Emotion](https:\u002F\u002Femotion.sh\u002F)\n        * [JSS](http:\u002F\u002Fcssinjs.org\u002F)\n        * [Aphrodite](https:\u002F\u002Fgithub.com\u002FKhan\u002Faphrodite)\n6. State Management\n    1. [Component State](https:\u002F\u002Freactjs.org\u002Fdocs\u002Ffaq-state.html)\u002F[Context API](https:\u002F\u002Freactjs.org\u002Fdocs\u002Fcontext.html)\n    2. [Redux](https:\u002F\u002Fredux.js.org\u002F)\n        1. Async actions (Side Effects)\n            * [Redux Thunk](https:\u002F\u002Fgithub.com\u002Freduxjs\u002Fredux-thunk)\n            * [Redux Better Promise](https:\u002F\u002Fgithub.com\u002FLukasz-pluszczewski\u002Fredux-better-promise)\n            * [Redux Saga](https:\u002F\u002Fredux-saga.js.org\u002F)\n            * [Redux Observable](https:\u002F\u002Fredux-observable.js.org)\n        2. Helpers\n            * [Rematch](https:\u002F\u002Frematch.gitbooks.io\u002Frematch\u002F)\n            * [Reselect](https:\u002F\u002Fgithub.com\u002Freduxjs\u002Freselect)\n        3. Data persistence\n            * [Redux Persist](https:\u002F\u002Fgithub.com\u002Frt2zz\u002Fredux-persist)\n            * [Redux Phoenix](https:\u002F\u002Fgithub.com\u002Fadam-golab\u002Fredux-phoenix)\n        4. [Redux Form](https:\u002F\u002Fredux-form.com)\n    3. [MobX](https:\u002F\u002Fmobx.js.org\u002F)\n7. Type Checkers\n    * [PropTypes](https:\u002F\u002Freactjs.org\u002Fdocs\u002Ftypechecking-with-proptypes.html)\n    * [TypeScript](https:\u002F\u002Fwww.typescriptlang.org\u002F)\n    * [Flow](https:\u002F\u002Fflow.org\u002Fen\u002F)\n8. Form Helpers\n    * [Redux Form](https:\u002F\u002Fredux-form.com)\n    * [Formik](https:\u002F\u002Fgithub.com\u002Fjaredpalmer\u002Fformik)\n    * [Formsy](https:\u002F\u002Fgithub.com\u002Fformsy\u002Fformsy-react)\n    * [Final Form](https:\u002F\u002Fgithub.com\u002Ffinal-form\u002Ffinal-form)\n9. Routing\n    * [React-Router](https:\u002F\u002Freacttraining.com\u002Freact-router\u002F)\n    * [Router5](https:\u002F\u002Frouter5.js.org\u002F)\n    * [Redux-First Router](https:\u002F\u002Fgithub.com\u002Ffaceyspacey\u002Fredux-first-router)\n    * [Reach Router](https:\u002F\u002Freach.tech\u002Frouter\u002F)\n10. API Clients\n    1. REST\n        * [Fetch](https:\u002F\u002Fdeveloper.mozilla.org\u002Fen-US\u002Fdocs\u002FWeb\u002FAPI\u002FFetch_API)\n        * [SuperAgent](https:\u002F\u002Fvisionmedia.github.io\u002Fsuperagent\u002F)\n        * [axios](https:\u002F\u002Fgithub.com\u002Faxios\u002Faxios)\n    2. GraphQL\n        * [Apollo](https:\u002F\u002Fwww.apollographql.com\u002Fdocs\u002Freact\u002F)\n        * [Relay](https:\u002F\u002Ffacebook.github.io\u002Frelay\u002F)\n        * [urql](https:\u002F\u002Fgithub.com\u002FFormidableLabs\u002Furql)\n11. Utility Libraries\n    * [Lodash](https:\u002F\u002Flodash.com\u002F)\n    * [Moment](https:\u002F\u002Fmomentjs.com\u002F)\n    * [classnames](https:\u002F\u002Fgithub.com\u002FJedWatson\u002Fclassnames)\n    * [Numeral](http:\u002F\u002Fnumeraljs.com\u002F)\n    * [RxJS](http:\u002F\u002Freactivex.io\u002F)\n    * [ImmutableJS](https:\u002F\u002Ffacebook.github.io\u002Fimmutable-js\u002F)\n    * [Ramda](https:\u002F\u002Framdajs.com\u002F)\n12. Testing\n    1. Unit Testing\n        * [Jest](https:\u002F\u002Ffacebook.github.io\u002Fjest\u002F)\n        * [Enzyme](http:\u002F\u002Fairbnb.io\u002Fenzyme\u002F)\n        * [Sinon](http:\u002F\u002Fsinonjs.org\u002F)\n        * [Mocha](https:\u002F\u002Fmochajs.org\u002F)\n        * [Chai](http:\u002F\u002Fwww.chaijs.com\u002F)\n        * [AVA](https:\u002F\u002Fgithub.com\u002Favajs\u002Fava)\n        * [Tape](https:\u002F\u002Fgithub.com\u002Fsubstack\u002Ftape)\n    2. End to End Testing\n        * [Selenium](https:\u002F\u002Fwww.seleniumhq.org\u002F), [Webdriver](http:\u002F\u002Fwebdriver.io\u002F)\n        * [Cypress](https:\u002F\u002Fcypress.io\u002F)\n        * [Puppeteer](https:\u002F\u002Fpptr.dev\u002F)\n        * [Cucumber.js](https:\u002F\u002Fgithub.com\u002Fcucumber\u002Fcucumber-js)\n        * [Nightwatch.js](http:\u002F\u002Fnightwatchjs.org\u002F)\n    3. Integration Testing\n        * [Karma](https:\u002F\u002Fkarma-runner.github.io\u002F)\n13. Internationalization\n    * [React Intl](https:\u002F\u002Fgithub.com\u002Fyahoo\u002Freact-intl)\n    * [React i18next](https:\u002F\u002Freact.i18next.com\u002F)\n14. Server Side Rendering\n    * [Next.js](https:\u002F\u002Fnextjs.org\u002F)\n    * [After.js](https:\u002F\u002Fgithub.com\u002Fjaredpalmer\u002Fafter.js)\n    * [Rogue](https:\u002F\u002Fgithub.com\u002Falidcastano\u002Frogue.js)\n15. Static Site Generator\n    * [Gatsby](https:\u002F\u002Fwww.gatsbyjs.org\u002F)\n16. Backend Framework Integration\n    * [React on Rails](https:\u002F\u002Fshakacode.gitbooks.io\u002Freact-on-rails\u002Fcontent\u002F)\n17. Mobile\n    * [React Native](https:\u002F\u002Ffacebook.github.io\u002Freact-native\u002F)\n    * [Cordova](https:\u002F\u002Fcordova.apache.org\u002F)\u002F[Phonegap](https:\u002F\u002Fphonegap.com\u002F)\n18. Desktop\n    * [Proton Native](https:\u002F\u002Fproton-native.js.org\u002F)\n    * [Electron](https:\u002F\u002Felectronjs.org\u002F)\n    * [React Native Windows](https:\u002F\u002Fgithub.com\u002FMicrosoft\u002Freact-native-windows)\n19. Virtual Reality\n    * [React 360](https:\u002F\u002Ffacebook.github.io\u002Freact-360\u002F)\n\n## Wrap Up\n\nIf you think the roadmap can be improved, please do open a PR with any updates and submit any issues. Also, I will continue to improve this, so you might want to star this repository to revisit.\n\n## Contribution\n\nThe roadmap is built using [Draw.io](https:\u002F\u002Fwww.draw.io\u002F). Project file can be found at `\u002Fsrc` directory. To modify it, open draw.io, click **Open Existing Diagram** and choose `xml` file with project. It will open the roadmap for you. Update it, upload and update the images in readme and create a PR (export as png).\n\n- Open a pull request with improvements\n- Discuss ideas in issues\n- Spread the word\n\n## License\n\n[![License: CC BY-NC-SA 4.0](https:\u002F\u002Fimg.shields.io\u002Fbadge\u002FLicense-CC%20BY--NC--SA%204.0-lightgrey.svg)](https:\u002F\u002Fcreativecommons.org\u002Flicenses\u002Fby-nc-sa\u002F4.0\u002F)\n","这个项目是一个React开发者成长路线图，旨在帮助开发者系统地掌握成为React开发者所需的知识和技能。核心功能包括提供从HTML、CSS、JavaScript基础到React框架学习的全面指南，并涵盖了版本控制、HTTP协议等通用开发技能的学习建议。技术特点在于其详尽的学习路径规划与丰富的资源链接，涵盖官方教程、在线课程及各种实用工具介绍。适合希望从事前端开发特别是想专注于React技术栈的新手或有一定基础的开发者使用，帮助他们明确学习方向，提升技术水平。",2,"2026-06-11 02:52:54","top_language"]