Skip to content
This repository has been archived by the owner on Jul 6, 2023. It is now read-only.

fukuiretu/nuxt-healthcheck

Repository files navigation

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'

TODO

  • unit test

License

The npm is available as open source under the terms of the MIT License.

About

Nuxt.js module for handle healthcheck

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published