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.
Code splitting is the splitting of code into various bundles or components which can then be loaded on demand or in parallel.
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.
Eslint is a linter which enforces developer to write good and consistent code all over Project. Prettier is a good formatter tool that automatically formats the source code.
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.
In this blog, you will learn how to build a carousel postcard like instagram with Reactjs, Material-UI, and Swiperjs.
Reactjs is a javascript framework. But a beginner can struggle if they don't have solid javascript knowledge. In this blog, you will know about 11 concepts to understand before learning javascript.
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 a Material-UI component to present your design and content as clearly and efficiently as possible.
Material-ui is a ui framework for react based on Material Design which is developed by Google .
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.
Typewriter effect is an animation effect where a text appears like someone is typing.
There are a lot of react animation libraries available for reactjs. The top ones are listed below.
In this blog you are going to learn how to create a toggle button that switches between light and dark theme.
In this blog post I will explain 13 reasons why you should use Next.js.
Accessing cookies in nextjs from server side can be tricky. In this blog you will learn how to do that