Skip to content

App features

App features are settings that slightly modify app behavior.

List of app features

Currently, the following features are available:

  • 500-on-error — send 500 Internal Server Error status if an error occurred during request handling
  • auto-head-handler — automatically respond to HEAD requests with same headers, but without body and 204 No Content status code
  • x-powered-by — set response header X-Powered-By: Lunatic

Enabling and disabling app features

You can enable, disable and toggle different app features with LunaticServer methods app.enable(), app.disable() and app.toggle() respectively.

import { LunaticServer } from '@shelepuginivan/lunatic'
const app = new LunaticServer()
app.disable('x-powered-by')