Let’s talk about the Future of Jamstack — Join us

Next.js

133884 stars
28795 forks
2322 issues
Home page
https://nextjs.org
Repository
vercel/next.js
Twitter
@nextjs
Language:
JavaScript
License:
MIT
Templates:
React

Next.js is a minimalistic framework for server-rendered React applications as well as statically exported React apps.

Install

It's easy to install

npm install --save next react react-dom 

Build

Add a build script

{ "scripts": { "dev": "next", "build": "next build", "start": "next start" } } 

Run

After that, the file-system is the main API. Every .js file within the automatically created pages directory becomes a route that gets automatically processed and rendered.

Example

Creating a website only takes a minute. Examples

Deploy to Netlify

Find more static site generators.