Member-only story
What is Next.js?
React is a display mechanism using components, and there is no specific yesterday other than components.
When you want to create multiple pages.
When you want to get data from the server and use it as a state
When you want to get data from the server and use it as a state. A typical example is `Next.js`.
Next.js is a package that integrates various libraries into React.
By simply executing the prepared commands, you can create a project with everything set up and start developing right away.
Specific features of Next.js.
SSG and SSR support
React uses a method called CSR (Client Side Rendering: generating the display on the web browser side), which uses JavaScript on the web browser side to generate the display. By using SSG and SSR, you can create and display all of these on the server side.
SSG(Static Site Generator)
This is a function to output a project as a static site (with all necessary processing and data…