Created
July 8, 2019 15:41
-
-
Save daniepetrov/06c7e1708bd88fe9198b5efef3f6840d to your computer and use it in GitHub Desktop.
Custom next.js server using Express
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"scripts": { | |
"dev": "node server.js", | |
"start": "NODE_ENV=production node server.js", | |
"build": "next build", | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const express = require('express') | |
const next = require('next') | |
const port = parseInt(process.env.PORT, 10) || 3000 | |
const dev = process.env.NODE_ENV !== 'production' | |
const app = next({ dev }) | |
const handle = app.getRequestHandler() | |
app.prepare().then(() => { | |
const server = express() | |
server.get('*', (req, res) => { | |
return handle(req, res) | |
}) | |
server.listen(port, err => { | |
if (err) throw err | |
console.log(`> Ready on http://localhost:${port}`) | |
}) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment