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

scimit

v1.0.6

Published

A local SCIM 2.0 sink — capture, inspect, and debug IDP provisioning requests

Readme

🕺 SCIMit

Finally understand what your Identity Provider is actually doing.

SCIMit is a local SCIM 2.0 sink that captures, stores, and beautifully displays every provisioning request your IDP fires at you. Point Okta, Entra ID, or any SCIM-compatible IdP at it and watch users, groups, and requests stream in live — with full syntax-highlighted JSON, request/response inspection, and zero infrastructure faff.

Perfect for debugging SCIM integrations, understanding IDP behaviour, and not losing your mind during provisioning setup.


✨ What you get

  • Live request streaming — new SCIM requests appear in the UI the instant they land, no refresh needed
  • Full request/response inspection — every header, body, and status code, with syntax-highlighted JSON
  • User & group tracking — see exactly what your IDP has provisioned, with raw SCIM payloads on demand
  • Connector page — your SCIM base URL and bearer token, one click to copy
  • SCIM 2.0 compliant — speaks the full protocol: Users, Groups, filters, PATCH operations, the lot
  • SQLite storage — everything persisted locally, no external dependencies

🚀 Getting started

Run with npx (no install)

npx scimit

Opens everything on http://localhost:3088 — dashboard, SCIM endpoint, and API all through one port.

Options:
  --port, -p  Port to listen on       [default: 3088]
  --db,   -d  Path to SQLite database [default: ~/.scimit/data.db]
npx scimit --port 8080 --db /data/scimit.db

Install globally

npm install -g scimit
scimit

Development (from source)

npm install
npm run dev    # backend on :3000, frontend on :5173 (Vite proxy)
npm run build  # compiles everything to dist/

| Service | URL | |----------|-----| | Dashboard (dev) | http://localhost:5173 | | Dashboard (built) | http://localhost:3088 | | Backend (dev, internal) | http://localhost:3000 |


🔌 Connecting your IDP

Head to the Connector page in the UI — it has your SCIM base URL and bearer token ready to copy, plus step-by-step setup instructions.

SCIM base URL: http://your-host:3088/scim/v2

Quick IDP guides:

  • Okta: Applications → [Your App] → Provisioning → Integration → Configure API Integration
  • Entra ID: Enterprise Applications → [Your App] → Provisioning → Tenant URL + Secret Token

If your IDP is cloud-hosted and can't reach localhost, expose SCIMit with localhost.run (ssh -R 80:localhost:3088 [email protected]) or localtunnel (npx localtunnel --port 3088) — both require no account or install.


🧪 Test with cURL

Grab your token from the Connector page, then:

# List users
curl -H "Authorization: Bearer YOUR_TOKEN" \
  http://localhost:3088/scim/v2/Users

# Create a user
curl -X POST \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/scim+json" \
  -d '{"userName":"[email protected]","active":true}' \
  http://localhost:3088/scim/v2/Users

🏗️ Tech stack

| Layer | Tech | |----------|------| | Backend | Node.js, Express, TypeScript, better-sqlite3 | | Frontend | React, Vite, TypeScript, Tailwind CSS v4, TanStack Query | | Protocol | SCIM 2.0 (RFC 7643 / RFC 7644) |


⚠️ Heads up

SCIMit is a dev/debug tool — it's not hardened for production. The admin API is unauthenticated by design, so keep it off the public internet.


License

ISC