nuxt-healthcheck
Middreware for Nuxt.js that provides healthcheck.Setup
Install with yarn:
yarn add nuxt-healthcheck
Install with npm:
npm install nuxt-healthcheck
Add nuxt-healthcheck
module to nuxt.config.js
module.exports = {
modules: [
'nuxt-healthcheck',
]
}
Add additional options to healthcheck section of nuxt.config.js to override defaults
healthcheck: {
path: '/ping',
contentType: 'application/json',
healthy: () => {
return JSON.stringify({ result: 'pong' })
}
}
Options
path
Default: '/healthcheck'contentType
Default: 'text/plain'healthy
Function that returns a response body.Default: 'OK'