React video tutorial: Next.js


In this video I invite you to discover together what Next.js is and to see the different types of rendering possible.

A framework for React

First, nextjs is a framework that allows you to build a site based on the React library by offering basic automatic configuration for the development (with the fast refresh) and the publication of the application (bundling & optimization). It also offers tools like a router and an internationalization system.

Finally, nextjs mainly offers the possibility of having pages pre-rendered during compilation (Static Site Generation, SSG) or during the request (Server Side Rendering, SSR) in order to optimize the initial loading of the site.