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

tabnyth

v0.2.0

Published

Local-first database studio for MongoDB and Postgres. Point it at your DB and get a localhost UI to browse, search, query, edit, and visualize your data. Read-only by default.

Readme

tabnyth

Local-first database studio for MongoDB and Postgres. Point it at your database and get a localhost web UI to browse collections/tables, search real data, run guarded queries, edit cells, and visualize relationships — all from your terminal. Writes are disabled by default.

🌐 Website: tabnyth.cloud · 📚 Docs: tabnyth.cloud/docs

npm i -D tabnyth @tabnyth/mongodb
npx tabnyth --url "mongodb://localhost:27017/mydb"

Why Tabnyth

  • 🔒 Read-only by default — writes stay off until you explicitly opt in.
  • Zero config — no accounts, no cloud. One command spins up a local studio at 127.0.0.1.
  • 🔎 Browse & search — page through collections and tables and search across your real data.
  • 🧮 Guarded queries — run Mongo and SQL queries with built-in safety limits.
  • ✏️ Inline edits — edit cells directly once you switch to edit mode.
  • 🕸️ Visualize relationships — see how your data connects.
  • 🤖 Nyth AI — ask questions about your data (requires a license key).

Install

Install Tabnyth with one database adapter:

# MongoDB
npm i -D tabnyth @tabnyth/mongodb
npx tabnyth --url "mongodb://localhost:27017/mydb"
# Postgres
npm i -D tabnyth @tabnyth/postgres
npx tabnyth --url "postgresql://user:pass@localhost:5432/mydb"

To read the database URL from a custom env file, add a script:

{
  "scripts": {
    "tabnyth": "npx tabnyth .env.dev DATABASE_URL"
  }
}

Choosing a mode

Running npx tabnyth (or npm run tabnyth) opens a startup prompt:

Select Tabnyth startup mode:
> View mode only - this will allow you to see data in your database
  Edit mode - this will allow you to make edits

Use the arrow keys to pick a mode and press Enter. The highlighted choice is shown in green.

  • Pass --mode view or --mode edit to skip the prompt in scripts.
  • Writes are disabled by default. Pass --allow-write only when you intentionally want write operations enabled.

License setup

Unlock the full potential of Tabnyth (including Nyth AI) with a license key. Generate one at tabnyth.cloud/docs/generate-license-key.

Run setup and paste your key when prompted — Tabnyth saves it to your project .env automatically:

npx tabnyth setup
Paste your Tabnyth license key here: tnk_your_license_key
Added TABNYTH_KEY to .env.

This writes the key to .env:

# Paste your Tabnyth license key here or get it generated from https://tabnyth.cloud/docs/generate-license-key
TABNYTH_KEY=tnk_your_license_key

You can also set TABNYTH_KEY directly as an environment variable. During local development, point the package at your backend with:

TABNYTH_API_URL=http://localhost:8080 npx tabnyth --url "postgresql://user:pass@localhost:5432/mydb"

Links