Skip to content

Instantly share code, notes, and snippets.

@oguzhanaslan
Created January 17, 2018 12:22
Show Gist options
  • Save oguzhanaslan/9594736505cfd353167634c20ea9f23c to your computer and use it in GitHub Desktop.
Save oguzhanaslan/9594736505cfd353167634c20ea9f23c to your computer and use it in GitHub Desktop.
server.js
// This file doesn't not go through babel or webpack transformation.
// Make sure the syntax and sources this file requires are compatible with the current node version you are running
// See https://github.com/zeit/next.js/issues/1245 for discussions on Universal Webpack or universal Babel
const { createServer } = require('http')
const { parse } = require('url')
const next = require('next')
const dev = process.env.NODE_ENV !== 'production'
const app = next({ dev })
const handle = app.getRequestHandler()
app.prepare().then(() => {
createServer((req, res) => {
// Be sure to pass `true` as the second argument to `url.parse`.
// This tells it to parse the query portion of the URL.
const parsedUrl = parse(req.url, true)
const { pathname, query } = parsedUrl
if (pathname === '/a') {
app.render(req, res, '/b', query)
} else if (pathname === '/b') {
app.render(req, res, '/a', query)
} else {
handle(req, res, parsedUrl)
}
}).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