Live Site URl - https://itsreactproject.netlify.app/
- npm init
- npm install parcel
- npx parcel indecx.html (for development)
- npx parcel build indecx.html (for Production)
- used for minifying, optimizing image, hot module replacement, file watching, differential bundling, Diagonstics, Tree shaking algorithm that removes unused code, code spliting.
- npm install react
- npm install react-dom
- Client Side Routing In this case we do not make network calls intead we have all the code in the initial call and we loads the component according to the route
- Server Side Routing In this case we make a network call and fetches that from server and then we render that page