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

indi-runtime

v0.0.3

Published

Indi runtime SDK for API monitoring in production

Readme

@indi/runtime

Lightweight SDK for monitoring your APIs in production. Auto-learns response schemas and detects violations — missing fields, type mismatches, schema drift, slow responses, and unexpected status codes.

Zero dependencies. Works with any framework.

Install

npm install @indi/runtime

Quick Start

Sign up at indimapper.com to get your API key and team ID, then:

import { indi } from '@indi/runtime';

indi.init({
  apiKey: 'your-api-key',
  teamId: 'your-team-id',
});

indi.watch('/api/users', { learningPeriod: 20 });
indi.watch('/api/orders', { maxResponseTime: 500 });

How It Works

  1. Intercepts — Patches fetch and XMLHttpRequest to inspect responses without affecting your app
  2. Learns — Observes the first N responses to build a schema baseline (which fields exist, their types, required vs optional)
  3. Validates — After learning, every response is checked against the baseline
  4. Reports — Violations are logged to the console and sent to your Indi dashboard

API

indi.init(config)

| Option | Type | Description | |--------|------|-------------| | apiKey | string | Your API key from the dashboard | | teamId | string | Your team ID from the dashboard | | sampleRate | number | 0-1, percentage of requests to validate (default 1) | | defaults.maxResponseTime | number | Max response time in ms | | defaults.expectedStatus | number[] | Expected status codes | | defaults.learningPeriod | number | Responses to observe before locking schema (default 20) |

indi.watch(endpoint, options?)

Start monitoring an endpoint. Supports wildcards: indi.watch('/api/*').

| Option | Type | Description | |--------|------|-------------| | method | string | HTTP method to match | | maxResponseTime | number | Max response time in ms | | expectedStatus | number[] | Expected status codes | | learningPeriod | number | Responses before locking schema |

indi.unwatch(endpoint)

Stop monitoring an endpoint.

indi.destroy()

Unpatch fetch/XHR and clean up.

Violation Types

| Type | Description | |------|-------------| | missing_field | A required field is missing from the response | | type_mismatch | A field's type changed (e.g. number became string) | | schema_drift | A new field appeared that wasn't seen during learning | | slow_response | Response time exceeded the threshold | | unexpected_status | Status code not in the expected list |

License

MIT