Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

fastify-x-request-id

dimonnwc3132MIT2.0.0TypeScript support: included
fastify, request-id, x-request-id

readme

fastify-x-request-id

js-standard-style Build Status

Fastify x-request-id plugin, with this you can trace individual requests to a web service (such as a REST API) from the client to the server and its backends.

Install

NPM

npm i fastify-x-request-id

Yarn

yarn add fastify-x-request-id

Usage

Add it to your project with register and you are done!

const Fastify = require("fastify")

const fastify = new Fastify()

fastify.register(require("fastify-x-request-id"))

fastify.listen(3000)

Reference

This plugin adds X-Request-Id header to every response from fastify request.id.

License

Licensed under MIT.