DEV Community

Discussion on: Why to choose NextJS for future projects

Collapse
 
dastasoft profile image
dastasoft

I use Next for almost every new project I do with React for me the top features are:

  • The file-system-based router is very convenient
  • The ability to choose for each page whether I want to build statically or from the server (or even a mix of both) is a game changer.

For the adaptability and responsiveness part, the real deal there is your own work with the styles as in any other framework.

For SEO, there are good third party libraries like next-seo that are very useful, like React Helmet on React projects, but Next provides a Head tag to do most of the common things for SEO purposes.

Collapse
 
yuridevat profile image
Julia 👩🏻‍💻 GDE

Good addition! Totally agree with you on the top features.