AI prompts
base on Roadmap to becoming a React developer # React Developer Roadmap
[README in Chinese](README-CN.md)
[README in Japanese](README-JA.md)
[README in Korean](README-KO.md)
[README in Portuguese (Brazil)](README-PTBR.md)
[README in Russian](README-RU.md)
[README in Spanish](README-ES.md)
> Roadmap to becoming a React developer in 2019:
Below 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?"
## Disclaimer
> 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
## Roadmap
![Roadmap](./roadmap.png)
## Resources
1. Basics
1. HTML
* Learn the basics of HTML
* Make a few pages as an exercise
2. CSS
* Learn the basics of CSS
* Style pages from previous step
* Build a page with grid and flexbox
3. JS Basics
* Get familiar with the syntax
* Learn basic operations on DOM
* Learn mechanisms typical for JS (Hoisting, Event Bubbling, Prototyping)
* Make some AJAX (XHR) calls
* Learn new features (ECMA Script 6+)
* Additionally, get familiar with the jQuery library
2. General Development Skills
1. Learn GIT, create a few repositories on GitHub, share your code with other people
2. Know HTTP(S) protocol, request methods (GET, POST, PUT, PATCH, DELETE, OPTIONS)
3. Don't be afraid of using Google, [Power Searching with Google](http://www.powersearchingwithgoogle.com/)
4. Get familiar with terminal, configure your shell (bash, zsh, fish)
5. Read a few books about algorithms and data structures
6. Read a few books about design patterns
3. Learn React on [official website](https://reactjs.org/tutorial/tutorial.html) or complete some [courses](https://egghead.io/courses/the-beginner-s-guide-to-react)
4. Get familiar with tools that you will be using
1. Package Managers
* [npm](https://www.npmjs.com/)
* [yarn](https://yarnpkg.com/lang/en/)
* [pnpm](https://pnpm.js.org/)
2. Task Runners
* [npm scripts](https://docs.npmjs.com/misc/scripts)
* [gulp](https://gulpjs.com/)
* [Webpack](https://webpack.js.org/)
* [Rollup](https://rollupjs.org/guide/en)
* [Parcel](https://parceljs.org/)
5. Styling
1. CSS Preprocessor
* [Sass/CSS](https://sass-lang.com/)
* [PostCSS](https://postcss.org/)
* [Less](http://lesscss.org/)
* [Stylus](http://stylus-lang.com/)
2. CSS Frameworks
* [Bootstrap](https://getbootstrap.com/)
* [Materialize](https://materializecss.com/), [Material UI](https://material-ui.com/), [Material Design Lite](https://getmdl.io/)
* [Bulma](https://bulma.io/)
* [Semantic UI](https://semantic-ui.com/)
3. CSS Architecture
* [BEM](http://getbem.com/)
* [CSS Modules](https://github.com/css-modules/css-modules)
* [Atomic](https://acss.io/)
* [OOCSS](https://github.com/stubbornella/oocss/wiki)
* [SMACSS](https://smacss.com/)
* [SUITCSS](https://suitcss.github.io/)
4. CSS in JS
* [Styled Components](https://www.styled-components.com/)
* [Radium](https://formidable.com/open-source/radium/)
* [Emotion](https://emotion.sh/)
* [JSS](http://cssinjs.org/)
* [Aphrodite](https://github.com/Khan/aphrodite)
6. State Management
1. [Component State](https://reactjs.org/docs/faq-state.html)/[Context API](https://reactjs.org/docs/context.html)
2. [Redux](https://redux.js.org/)
1. Async actions (Side Effects)
* [Redux Thunk](https://github.com/reduxjs/redux-thunk)
* [Redux Better Promise](https://github.com/Lukasz-pluszczewski/redux-better-promise)
* [Redux Saga](https://redux-saga.js.org/)
* [Redux Observable](https://redux-observable.js.org)
2. Helpers
* [Rematch](https://rematch.gitbooks.io/rematch/)
* [Reselect](https://github.com/reduxjs/reselect)
3. Data persistence
* [Redux Persist](https://github.com/rt2zz/redux-persist)
* [Redux Phoenix](https://github.com/adam-golab/redux-phoenix)
4. [Redux Form](https://redux-form.com)
3. [MobX](https://mobx.js.org/)
7. Type Checkers
* [PropTypes](https://reactjs.org/docs/typechecking-with-proptypes.html)
* [TypeScript](https://www.typescriptlang.org/)
* [Flow](https://flow.org/en/)
8. Form Helpers
* [Redux Form](https://redux-form.com)
* [Formik](https://github.com/jaredpalmer/formik)
* [Formsy](https://github.com/formsy/formsy-react)
* [Final Form](https://github.com/final-form/final-form)
9. Routing
* [React-Router](https://reacttraining.com/react-router/)
* [Router5](https://router5.js.org/)
* [Redux-First Router](https://github.com/faceyspacey/redux-first-router)
* [Reach Router](https://reach.tech/router/)
10. API Clients
1. REST
* [Fetch](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API)
* [SuperAgent](https://visionmedia.github.io/superagent/)
* [axios](https://github.com/axios/axios)
2. GraphQL
* [Apollo](https://www.apollographql.com/docs/react/)
* [Relay](https://facebook.github.io/relay/)
* [urql](https://github.com/FormidableLabs/urql)
11. Utility Libraries
* [Lodash](https://lodash.com/)
* [Moment](https://momentjs.com/)
* [classnames](https://github.com/JedWatson/classnames)
* [Numeral](http://numeraljs.com/)
* [RxJS](http://reactivex.io/)
* [ImmutableJS](https://facebook.github.io/immutable-js/)
* [Ramda](https://ramdajs.com/)
12. Testing
1. Unit Testing
* [Jest](https://facebook.github.io/jest/)
* [Enzyme](http://airbnb.io/enzyme/)
* [Sinon](http://sinonjs.org/)
* [Mocha](https://mochajs.org/)
* [Chai](http://www.chaijs.com/)
* [AVA](https://github.com/avajs/ava)
* [Tape](https://github.com/substack/tape)
2. End to End Testing
* [Selenium](https://www.seleniumhq.org/), [Webdriver](http://webdriver.io/)
* [Cypress](https://cypress.io/)
* [Puppeteer](https://pptr.dev/)
* [Cucumber.js](https://github.com/cucumber/cucumber-js)
* [Nightwatch.js](http://nightwatchjs.org/)
3. Integration Testing
* [Karma](https://karma-runner.github.io/)
13. Internationalization
* [React Intl](https://github.com/yahoo/react-intl)
* [React i18next](https://react.i18next.com/)
14. Server Side Rendering
* [Next.js](https://nextjs.org/)
* [After.js](https://github.com/jaredpalmer/after.js)
* [Rogue](https://github.com/alidcastano/rogue.js)
15. Static Site Generator
* [Gatsby](https://www.gatsbyjs.org/)
16. Backend Framework Integration
* [React on Rails](https://shakacode.gitbooks.io/react-on-rails/content/)
17. Mobile
* [React Native](https://facebook.github.io/react-native/)
* [Cordova](https://cordova.apache.org/)/[Phonegap](https://phonegap.com/)
18. Desktop
* [Proton Native](https://proton-native.js.org/)
* [Electron](https://electronjs.org/)
* [React Native Windows](https://github.com/Microsoft/react-native-windows)
19. Virtual Reality
* [React 360](https://facebook.github.io/react-360/)
## Wrap Up
If 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.
## Contribution
The roadmap is built using [Draw.io](https://www.draw.io/). Project file can be found at `/src` 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).
- Open a pull request with improvements
- Discuss ideas in issues
- Spread the word
## License
[![License: CC BY-NC-SA 4.0](https://img.shields.io/badge/License-CC%20BY--NC--SA%204.0-lightgrey.svg)](https://creativecommons.org/licenses/by-nc-sa/4.0/)
", Assign "at most 3 tags" to the expected json: {"id":"4874","tags":[]} "only from the tags list I provide: [{"id":77,"name":"3d"},{"id":89,"name":"agent"},{"id":17,"name":"ai"},{"id":54,"name":"algorithm"},{"id":24,"name":"api"},{"id":44,"name":"authentication"},{"id":3,"name":"aws"},{"id":27,"name":"backend"},{"id":60,"name":"benchmark"},{"id":72,"name":"best-practices"},{"id":39,"name":"bitcoin"},{"id":37,"name":"blockchain"},{"id":1,"name":"blog"},{"id":45,"name":"bundler"},{"id":58,"name":"cache"},{"id":21,"name":"chat"},{"id":49,"name":"cicd"},{"id":4,"name":"cli"},{"id":64,"name":"cloud-native"},{"id":48,"name":"cms"},{"id":61,"name":"compiler"},{"id":68,"name":"containerization"},{"id":92,"name":"crm"},{"id":34,"name":"data"},{"id":47,"name":"database"},{"id":8,"name":"declarative-gui "},{"id":9,"name":"deploy-tool"},{"id":53,"name":"desktop-app"},{"id":6,"name":"dev-exp-lib"},{"id":59,"name":"dev-tool"},{"id":13,"name":"ecommerce"},{"id":26,"name":"editor"},{"id":66,"name":"emulator"},{"id":62,"name":"filesystem"},{"id":80,"name":"finance"},{"id":15,"name":"firmware"},{"id":73,"name":"for-fun"},{"id":2,"name":"framework"},{"id":11,"name":"frontend"},{"id":22,"name":"game"},{"id":81,"name":"game-engine "},{"id":23,"name":"graphql"},{"id":84,"name":"gui"},{"id":91,"name":"http"},{"id":5,"name":"http-client"},{"id":51,"name":"iac"},{"id":30,"name":"ide"},{"id":78,"name":"iot"},{"id":40,"name":"json"},{"id":83,"name":"julian"},{"id":38,"name":"k8s"},{"id":31,"name":"language"},{"id":10,"name":"learning-resource"},{"id":33,"name":"lib"},{"id":41,"name":"linter"},{"id":28,"name":"lms"},{"id":16,"name":"logging"},{"id":76,"name":"low-code"},{"id":90,"name":"message-queue"},{"id":42,"name":"mobile-app"},{"id":18,"name":"monitoring"},{"id":36,"name":"networking"},{"id":7,"name":"node-version"},{"id":55,"name":"nosql"},{"id":57,"name":"observability"},{"id":46,"name":"orm"},{"id":52,"name":"os"},{"id":14,"name":"parser"},{"id":74,"name":"react"},{"id":82,"name":"real-time"},{"id":56,"name":"robot"},{"id":65,"name":"runtime"},{"id":32,"name":"sdk"},{"id":71,"name":"search"},{"id":63,"name":"secrets"},{"id":25,"name":"security"},{"id":85,"name":"server"},{"id":86,"name":"serverless"},{"id":70,"name":"storage"},{"id":75,"name":"system-design"},{"id":79,"name":"terminal"},{"id":29,"name":"testing"},{"id":12,"name":"ui"},{"id":50,"name":"ux"},{"id":88,"name":"video"},{"id":20,"name":"web-app"},{"id":35,"name":"web-server"},{"id":43,"name":"webassembly"},{"id":69,"name":"workflow"},{"id":87,"name":"yaml"}]" returns me the "expected json"