1.0.0 • Published 8 years ago

@plan3-relate/hapi-cls v1.0.0

Weekly downloads
2
License
ISC
Repository
github
Last release
8 years ago

Continuation Local Storage for Hapi Build Status

Heavily "inspired" on https://github.com/entrinsik-org/hapi-cls

Ref: https://www.npmjs.com/package/continuation-local-storage

This Hapi plugin installs CLS and binds it to the request

Installation

npm install @smp-relate/hapi-cls

Usage

const server = new hapi.Server();
server.connection({port: config.port});

server.register(require('@smp-relate/hapi-cls'), {namespace: 'my-namespace'})

NOTE: Registration should be done in the "highest" point possible to ensure other plugins are also working in the CLS context.

Value setting

There's a hook enabling setting custom values in the request context right after it's initialized. Requires value resolution function that receives request object as an argument. Example:

const server = new hapi.Server();
server.connection({port: config.port});

server.register(require('@smp-relate/hapi-cls'), {namespace: 'my-namespace', set: {
    customValue: (request) => request.headers['x-custom-header']
}});

License

ISC