The serverMiddleware property
Define server-side middleware.
-
Type:
Array
-
Items:
String
orObject
orFunction
-
Items:
Nuxt internally creates a connect instance that you can add your own custom middleware to. This allows us to register additional routes (typically /api
routes) without need for an external server.
This allows you to create a client API/server API pattern using Nuxt alone. This means that from the browser (for example, within a Vue component) you can make a request to a route in your server middleware.
One benefit of this pattern is that the server middleware exists on the server (like most middleware), not on the client. This means that you can handle environment variables and secrets in the server middleware, without exposing that information to the user.
Because connect itself is a middleware, registered middleware will work with both nuxt start
and also when used as a middleware with programmatic usages like express-template . Nuxt Modules can also provide serverMiddleware
using this.addServerMiddleware()
Additional to them, we introduced a prefix
option which defaults to true
. It will add the router base to your server middlewares.
Example:
-
Server middleware path:
/server-middleware
-
Router base:
/admin
-
With
prefix: true
(default):/admin/server-middleware
-
With
prefix: false
:/server-middleware
serverMiddleware vs middleware!
Don't confuse it with routes middleware which are called before each route by Vue on the client and server. Middleware listed in the serverMiddleware
property runs on the server before vue-server-renderer
and can be used for server-specific tasks like handling API requests or serving assets.
Usage
If middleware is String Nuxt will try to automatically resolve and require it.
import serveStatic from 'serve-static'
export default {
serverMiddleware: [
// Will register redirect-ssl npm package
'redirect-ssl',
// Will register file from project server-middleware directory to handle /server-middleware/* requires
{ path: '/server-middleware', handler: '~/server-middleware/index.js' },
// We can create custom instances too
{ path: '/static2', handler: serveStatic(__dirname + '/static2') }
]
}
Custom Server Middleware
It is also possible to write custom middleware. For more information See Connect Docs .
Middleware (server-middleware/logger.js
):
export default function (req, res, next) {
// req is the Node.js http request object
console.log(req.url)
// res is the Node.js http response object
// next is a function to call to invoke the next middleware
// Don't forget to call next at the end if your middleware is not an endpoint!
next()
}
serverMiddleware: ['~/server-middleware/logger']
Custom API endpoint
A server middleware can also extend Express. This allows the creation of REST endpoints.
const bodyParser = require('body-parser')
const app = require('express')()
app.use(bodyParser.json())
app.all('/getJSON', (req, res) => {
res.json({ data: 'data' })
})
module.exports = app
serverMiddleware: [
{ path: "/server-middleware", handler: "~/server-middleware/rest.js" },
],
Object Syntax
If your server middleware consists of a list of functions mapped to paths:
export default {
serverMiddleware: [
{ path: '/a', handler: '~/server-middleware/a.js' },
{ path: '/b', handler: '~/server-middleware/b.js' },
{ path: '/c', handler: '~/server-middleware/c.js' }
]
}
You can alternatively pass an object to define them, as follows:
export default {
serverMiddleware: {
'/a': '~/server-middleware/a.js',
'/b': '~/server-middleware/b.js',
'/c': '~/server-middleware/c.js'
}
}