Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@zsherman
Created August 16, 2017 15:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zsherman/883bc13c1fe984eb5d84c58482a12372 to your computer and use it in GitHub Desktop.
Save zsherman/883bc13c1fe984eb5d84c58482a12372 to your computer and use it in GitHub Desktop.
const express = require('express')
const next = require('next')
const routes = require('./routes')
const dev = process.env.NODE_ENV !== 'production'
const app = next({ dev })
const handle = app.getRequestHandler()
const handler = routes.getRequestHandler(app)
app.prepare()
.then(() => {
const server = express()
server.use(handler)
server.get('*', (req, res) => {
return handle(req, res)
})
server.listen(3000, (err) => {
if (err) throw err
console.log('> Ready on http://localhost:3000')
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment