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

oreppo

v0.0.3

Published

Oreppo's OpenTelemetry SDK for privacy scanning.

Readme

IMPORTANT NOTE: Oreppo does NOT collect actual HTTP bodies and headers, only parameter names.

Oreppo Node SDK

Oreppo is an OpenTelemetry-based SDK for privacy scanning and monitoring in Node.js applications. It automatically instruments your application to collect HTTP and database traces while respecting privacy concerns.

Installation

npm install oreppo

or

yarn add oreppo

Quickstart

import { Oreppo } from 'oreppo';

// Initialize the SDK
const oreppo = new Oreppo({
    apiKey: 'your-api-key',
    applicationId: 'your-app-id',
});
// Start the SDK
await oreppo.start();

// Your application code here...

// Shutdown when your app terminates
await oreppo.shutdown();

Configuration

The SDK accepts the following configuration options:

| Option | Type | Required | Default | Description | |--------|------|----------|---------|-------------| | apiKey | string | Yes | - | Your Oreppo API key | | applicationId | string | Yes | - | Unique identifier for your application from Oreppo | | flushMs | number | No | 60000 | Interval (in ms) to flush traces to backend | | debug | boolean | No | false | Enable debug logging |

Features

  • Automatic instrumentation of HTTP requests
  • Database query monitoring (PostgreSQL, Redis, MySQL, MongoDB)
  • Privacy-aware data collection
  • Automatic trace aggregation
  • Configurable flush intervals

Privacy Considerations

The SDK is designed with privacy in mind:

  • HTTP bodies and headers are not stored, only parameter names
  • Database queries are collected without actual values
  • Personal data is never transmitted to our servers

Automatic Instrumentation

The SDK automatically instruments:

HTTP Requests

  • Request methods
  • URLs
  • Query parameter names (NOT the values)
  • Status codes
  • Response times
  • Request body parameter names (NOT the values)
  • Request header parameter names (NOT the values)

Database Operations

  • Database system (e.g. PostgreSQL, MySQL, MongoDB)
  • Database query
  • NOTE: Oreppo does NOT collect actual database values, only parameter names.

Manual Shutdown

It's important to properly shutdown the SDK when your application terminates:

process.on('SIGTERM', async () => {
    await oreppo.shutdown();
    process.exit(0);
});

Development

To build the package locally, run:

npm run build

Support

For support, please contact [email protected] or open an issue on our GitHub repository.