![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
@voodoo.io/tracing-middleware
Advanced tools
Add a middleware to handle tracing with open tracing libs
A simple middleware to enable tracing with opentelemetry lib. It will instantiate some instrumentation libs in order to catch span for:
npm install @voodoo.io/tracing-middleware --save
const tracer = require('@voodoo.io/tracing-middleware')()
This method will add the traceID in the req object.
const tracingModule = require('@voodoo.io/tracing-middleware')()
fastify.addHook('onRequest', tracingModule.addTraceId)
Example of configuration, using tempo as endpoint.
const tracer = require('@voodoo.io/tracing-middleware')({
serviceName: 'myService',
exporterEndpoint: 'http://tempo.monitoring.svc.cluster.local:14268/api/traces',
instrumentations: {
mysql: true,
lambda: true
}
})
Name | Default | Description |
---|---|---|
serviceName | process.env.OTEL_SERVICE_NAME | Your service's name |
exporterEndpoint | process.env.OTEL_EXPORTER_ENDPOINT | The opentelemetry endpoint |
instrumentations | List of instrumentations | |
instrumentations.http | true | |
instrumentations.aws | true | |
instrumentations.mysql | false | |
instrumentations.mongodb | false | |
instrumentations.pg | false | |
instrumentations.redis | false | |
instrumentations.ioredis | false | |
instrumentations.graphql | false | |
instrumentations.koa | false | |
instrumentations.express | false | |
instrumentations.fastify | false | |
instrumentations.lambda | false | |
instrumentations.grpc | false | |
instrumentations.winston | false |
Version | Supported | Tested |
---|---|---|
20.x | yes | yes |
18.x | yes | yes |
DEBUG=tracing-middleware* node myApp.js
$ npm test
Run with coverage
$ npm run coverage
Coverage report can be found in coverage/.
MIT
npm publish
FAQs
Add a middleware to handle tracing with open tracing libs
The npm package @voodoo.io/tracing-middleware receives a total of 173 weekly downloads. As such, @voodoo.io/tracing-middleware popularity was classified as not popular.
We found that @voodoo.io/tracing-middleware demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.