Member-only story
It is no secret that software development means constant learning. New languages and frameworks come out frequently. And you are required to learn to keep up to date continuously. Recently, I finally decided to pick up the NextJS. It is a newer framework that is gaining much popularity, and I can see why. After almost ten years as a software developer, focusing mostly on UI, it is a framework that impresses me from the start. It impresses me like mixins did before we had modern frameworks and like React did when released. Bellow, you can find the list of all the useful features you get out of the box when you use NextJS. Features that you should consider when choosing technology for your next project.
1. Easily creating project
Just like creating a ReactJS project, it is easy to create a NextJS project. For it, you can use create-next-app with npx. Use the following command to create a project.
https://gist.github.com/kristijan-pajtasev/0a48253425b0b4119fc6ad59921f4343
2. It supports CSS and PostCSS, and SASS with minimal setup
CSS and PostCSS are available out of the box. And with just installing one dependency, you can use SASS also.
3. It supports CSS modules
CSS modules enable scoped CSS, which gives better-organized code and reduces bugs…