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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@alwaysmeticulous/backend-recorder-launcher

v2.286.0

Published

Downloads the backend-recorder bundle script and executes it

Readme

Backend Recorder Launcher

Downloads the backend-recorder bundle script and executes it. The backend recorder intercepts HTTP requests/responses in Node.js apps using OpenTelemetry and exports spans to Meticulous.

Setup

npm install @alwaysmeticulous/backend-recorder-launcher

Option 1: Using instrumentation.js (recommended)

Create or update your instrumentation.js (or instrumentation.ts) file at the root of your project:

const { initBackendRecorder } = require("@alwaysmeticulous/backend-recorder-launcher");

initBackendRecorder({
  recordingToken: process.env.METICULOUS_RECORDING_TOKEN,
});

Then start your app with the --require flag so the recorder is loaded before your application code:

node --require ./instrumentation.js app.js

If you are using Next.js, add the instrumentation hook in instrumentation.ts:

export async function register() {
  if (process.env.NEXT_RUNTIME === "nodejs") {
    const { initBackendRecorder } = await import(
      "@alwaysmeticulous/backend-recorder-launcher"
    );
    await initBackendRecorder({
      recordingToken: process.env.METICULOUS_RECORDING_TOKEN,
    });
  }
}

Option 2: Auto-init (zero-code)

Use the auto-init entry point which initializes the recorder as a side effect. No code changes needed — just add the --require flag:

node --require @alwaysmeticulous/backend-recorder-launcher/auto-init app.js

The auto-init entry point reads configuration from environment variables.

Configuration

initBackendRecorder accepts an optional BackendRecorderConfig object:

| Option | Type | Description | |------------------------|-----------------------|--------------------------------------------------| | enabled | boolean | Enable/disable the recorder (default: true) | | meticulousProjectName| string | The name of the Meticulous project | | recordingToken | string | Token used to authenticate span uploads | | exportMode | "local" \| "s3" | Where to export spans (default: "local") | | localOutputDir | string | Directory for local exports | | flushIntervalMs | number | How often to flush spans (ms) |

Graceful shutdown

initBackendRecorder returns a BackendRecorderHandle with a stopRecording() method. Call it before your process exits to flush any pending spans:

const handle = await initBackendRecorder({ /* ... */ });

process.on("SIGTERM", async () => {
  await handle?.stopRecording();
  process.exit(0);
});