rsnext/examples/custom-server-express/server.js

21 lines
475 B
JavaScript
Raw Normal View History

const express = require('express')
const next = require('next')
const port = parseInt(process.env.PORT, 10) || 3000
const dev = process.env.NODE_ENV !== 'production'
2017-01-16 18:24:33 +01:00
const app = next({ dev })
const handle = app.getRequestHandler()
app.prepare().then(() => {
const server = express()
server.all('*', (req, res) => {
return handle(req, res)
})
2020-05-18 21:24:37 +02:00
server.listen(port, (err) => {
if (err) throw err
console.log(`> Ready on http://localhost:${port}`)
})
})