ReactJS - jyotiprasadpal/useful-resources GitHub Wiki

Official documentation

Books

Videos

Articles, Blogs, Tutorials, Github

Important topics

Components

State, Props

Virtual DOM

Rendering

Hooks

Prop Drilling & Context API

Redux

Lifecycle methods

Interview preparation

Create react projects

Useful commands to set up project with redux toolkit

  • npm create vite@latest your-project-name -- --template react
  • cd your-project-name
  • npm install
  • npm install @reduxjs/toolkit react-redux
  • npm install @reduxjs/toolkit react-redux --legacy-peer-deps [In case of any errors, try this. Refer: https://stackoverflow.com/questions/66020820/npm-when-to-use-force-and-legacy-peer-deps]