tlivings / sopalin

Wipe up spilled milk in Hapi.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

sopalin

Wipe up spilled milk in Hapi.

A plugin to shutdown on uncaughtExceptions, while allowing in-flight responses to complete. While the server is shutting down, new requests will be responded to with a 503.

Registration options

  • replyHeaders - Response headers to return post error, while the server is still shutting down. Defaults to {}.
  • shutdownTimeout - Timeout option for Hapi.Server#stop. Defaults to 10000.
  • lastly(error) - An optional final callback for clean up. Called after server shutdown. The default behavior is to process.exit(1).

Usage

const Hapi = require('hapi');
const Sopalin = require('sopalin');

const server = new Hapi.Server();

server.register({
    register: Sopalin,
    options: {
        shutdownTimeout: 15000,
        replyHeaders: {
            'x-custom-retry-header': 'true'
        }
    }
}, (error) => {
    //Everything else...
});

About

Wipe up spilled milk in Hapi.


Languages

Language:JavaScript 100.0%