Most of the time the default Next.js server will be enough but there are times you'll want to run your own server to integrate into an existing application. Next.js provides a custom server api.
Because the Next.js server is a Node.js module you can combine it with any other part of the Node.js ecosystem. In this case we are using Koa.
Execute create-next-app
with npm or Yarn to bootstrap the example:
npx create-next-app --example custom-server-koa custom-server-koa-app
# or
yarn create next-app --example custom-server-koa custom-server-koa-app
The most common Koa middleware for handling the gzip compression is compress, but unfortunately it is currently not compatible with Next.
koa-compress
handles the compression of the response body by checking res.body
, which will be empty in the case of the routes handled by Next (because Next sends and ends the response by itself).
If you need to enable the gzip compression, the most simple way to do so is by wrapping the express-middleware compression with koa-connect:
const compression = require('compression')
const koaConnect = require('koa-connect')
server.use(koaConnect(compression()))