Package Exports
- hapi-x-request-id
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (hapi-x-request-id) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
hapi-x-request-id
hapi.js v17+ plugin: sets request.id
from x-request-id
(or custom like x-amzn-trace-id
) header
Installation
npm install --save hapi-x-request-id
or
yarn add hapi-x-request-id
Usage
let server = new Hapi.Server();
await server.register({
plugin: require('hapi-x-request-id'),
options: {
header: 'x-amzn-trace-id' // optional
}
});
server.route({
method: 'GET',
path: '/',
handler: (request, h) => {
// will return request.info.id if the header is not passed
// request.info.id is hapi's autogenerated request id
return request.id;
}
});
License
MIT