npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@lahaus-nuxt/datadog-trace

v0.7.0

Published

Install and configure Datadog trace to receive traces of your instrumented application. By default

Readme

Welcome to @lahaus-nuxt/datadog-trace 👋

Version Documentation Maintenance

Nuxt module to add Datadog APM tracing to your application by capturing the requests passing through the http module in node.js.

🏠 Homepage

Installation

  1. Install npm package
yarn add @lahaus-nuxt/datadog-trace # or npm i @lahaus-nuxt/datadog-trace
  1. Install dd-trace
yarn add dd-trace # or  npm i dd-trace
  1. Edit your nuxt.config.js file to add module
{
  modules: ['@lahaus-nuxt/datadog-trace'];
}
  1. Change the options using the datadogTrace key or by adding a second parameter in the module configuration. Refer to the Usage section for details.

Usage

  1. By default, @lahaus-nuxt/datadog-trace exposes some basic options for common needs. Internally, these options are used to create a basic dd-trace instance and wire up middleware.

    The default values are:

    // ...
    {
      // activate the module
      enabled: true,
      // Set an application’s environment e.g. prod, pre-prod, stage.
      env: process.env.NODE_ENV,
      // The service name to be used for this program
      service: `host app's [package.json].name property`
      // Whether to enable trace ID injection in log records to be able to correlate traces with logs.
      logInjection: true,
      // The version number of the application
      version: hostAppPkg.version,
      ...yourOverrides,
      // This plugin automatically instruments the http module.
      httpOptions: {
        // activate the module
        enabled: true,
        // List of URLs that should not be instrumented
        blocklist: ['/api/healthz', '/_nuxt/?'],
        // An array of headers to include in the span metadata
        headers: [
          'x-request-id',
          'x-application-id',
          'x-session-id',
          'Host',
          'User-Agent',
          'Referer',
          'Accept',
          'Content-Type',
          'Origin',
          'x-client-id',
          'x-context',
        ]
      }
    }
    // ...

With options module

{
  modules: ['@lahaus-nuxt/datadog-trace', { enabled: true, httpOptions: {} }];
}

With datadogTrace key

{
  modules: ['@lahaus-nuxt/datadog-trace'],
  datadogTrace: {
    enabled: true, httpOptions: {}
  }
}
  1. To access the dd-trace instance from within Nuxt lifecycle areas, use the $ddTrace key from the Nuxt context object. Note: This is only available for server-side executions. For example, because asyncData is an isomorphic function in Nuxt, you will need to guard $ddTrace access with something like if (process.server) { ... }

Example nuxtServerInit in your apps ~/store/index.js:

// ...
export const actions = {
  async nuxtServerInit({ store, commit }, { req, $ddTrace }) {
    $ddTrace.use('<plugin-name>');
  },
};
// ...

Example asyncData in your apps ~/pages/somepage.vue:

    // ...
    asyncData(context) {
      if (process.server) {
        context.$ddTrace.use('<plugin-name>')
      }
    }
    // ...

For more information on dd-trace options, see the package documentation.

Using process.ddTrace in a Nuxt Module

Because modules are executed sequentially, any additional Nuxt modules should be loaded after the @lahaus-nuxt/datadog-trace module. You can then access the dd-trace instance via process.ddTrace as needed.

Author

👤 Alver Alexander Grisales Ortega [email protected]


This README was generated with ❤️ by readme-md-generator