React

React is an open-source, front end, JavaScript library for building user interfaces or UI components. It is maintained by Facebook and a community of individual developers and companies.

SWR is a React Hooks library for remote data fetching.  The name “SWR” is derived from stale-while-revalidate, a cache invalidation strategy popularized by HTTP RFC 5861.

7 reasons why you should use SWR

SWR is a React Hooks library for remote data fetching. The name “**SWR**” is derived from `stale-while-revalidate`, a cache invalidation strategy popularized by HTTP RFC 5861. **SWR** first returns the data from cache (stale), then sends the fetch request (revalidate), and finally comes with the up-to-date data again.

Typography is Material-UI component to present your design and content as clearly and efficiently as possible.

Typography with Material-UI

Typography is a Material-UI component to present your design and content as clearly and efficiently as possible.

Client-side rendering (CSR) means rendering pages directly in the browser using JavaScript. All logic, data fetching, templating and routing are handled on the client rather than the server.

What is Client Side Rendering?

Client-side rendering (CSR) means rendering pages directly in the browser using JavaScript. All logic, data fetching, templating and routing are handled on the client rather than the server.

Code splitting is the splitting of code into various bundles or components which can then be loaded on demand or in parallel.

What is Code Splitting?

Code splitting is the splitting of code into various bundles or components which can then be loaded on demand or in parallel.

Top 5 state management libraries for React

Top 5 state management libraries for React

There are a lot of state management libraries available for Reactjs. Here you will learn about the 5 most popular state management libraries. In case if you don't know, simply State management libraries are used for passing the props to children components without prop drilling.

CSS in JS is a way of writing css styles in javascript with much more flexiblity and features.

What is CSS in JS?

CSS in JS is a way of writing css styles in javascript with much more flexiblity and features.

Server-side rendering (SSR) is the traditional rendering system. Here the server serves the static HTML, CSS, JavaScript and other static assets. The content of the webpage is rendered by HTML itself.

What is Server Side Rendering?

Server-side rendering (SSR) is the traditional rendering system. Here the server serves the static HTML, CSS, JavaScript and other static assets. The content of the webpage is rendered by HTML itself.