DEV Community

Discussion on: What is the different between using React Js and Next Js?

Collapse
 
umarlqmn profile image
Umar Luqman • Edited

Next.js is just a higher abstraction of React. Think it this way.

Language (JavaScript) -> Library (React) -> Framework (Next)

The higher the abstraction the more opinionated it is.

Why Next.js?

  • Performant out of the box.
  • One framework can be used for multiple prerendering methods like server-side rendering (SSR), and static site generation (SSG) on a per-page basis.