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

quick-outerbase

v0.6.1

Published

Database GUI for your terminal: pass a DATABASE_URL and `npx quick-outerbase` opens a local web UI to browse, query and edit Postgres, MySQL, SQLite and libSQL/Turso. A fast, open-source Prisma Studio / Drizzle Studio / TablePlus / DbGate alternative. Com

Readme

quick-outerbase

Una GUI de base de datos en tu terminal. Tomá un DATABASE_URL y levantá una UI web local para explorar, consultar y editar tu base con un comando, en segundos. Alternativa open-source y multi-motor a Prisma Studio, Drizzle Studio, DbGate, TablePlus y Outerbase Studio.

npx quick-outerbase --url "postgresql://user:pass@host:5432/midb?schema=public"

Motores: PostgreSQL · MySQL/MariaDB · SQLite · libSQL/Turso · DynamoDB.

Es un launcher fino (cero dependencias): no compila nada en tu máquina. Detecta tu plataforma, baja una sola vez un runtime precompilado (standalone, ~28 MB) desde GitHub Releases, lo cachea y arranca. Primer run: segundos. Siguientes: instantáneo.

⚠️ Fork no oficial de la comunidad. No está afiliado ni respaldado por Outerbase. Fork de Outerbase Studio, bajo AGPL-3.0. Código fuente completo: https://github.com/joajo13/quick-outerbase

Uso

# PostgreSQL  (?schema= estilo Prisma → search_path)
npx quick-outerbase --url "postgresql://user:pass@host:5432/db?schema=public"

# MySQL / MariaDB
npx quick-outerbase --url "mysql://user:pass@host:3306/db"

# Turso / libSQL
npx quick-outerbase --url "libsql://mi-db.turso.io?authToken=XXXX"

# SQLite  (el path relativo se resuelve contra tu carpeta actual)
npx quick-outerbase --url "file:./datos.sqlite"

# DynamoDB  (las creds NO van en la URL: las resuelve el server desde la cadena AWS)
AWS_ACCESS_KEY_ID=... AWS_SECRET_ACCESS_KEY=... \
  npx quick-outerbase --url "dynamodb://us-east-1"

También podés pasar el URL por la env DATABASE_URL. Flags: --port <n> (default 3008), --no-open (no abrir el browser). Al cortar con Ctrl+C, libera el puerto sin zombies.

Requisitos

  • Node 20.9+ y tar en el PATH (Windows 10+ lo trae como tar.exe).
  • Plataformas con runtime precompilado: win32-x64, linux-x64. Para otras (incluido macOS), corré desde el código: npx github:joajo13/quick-outerbase --url "...".

Variables de entorno útiles

  • QUICK_OUTERBASE_CACHE — dónde cachear el runtime (default ~/.cache/quick-outerbase).
  • QUICK_OUTERBASE_BUNDLE — usar un .tar.gz local en vez de descargar (offline/testing).

Licencia

AGPL-3.0-only. Fork de Outerbase Studio (se conserva la licencia y la atribución). Ver LICENSE y AVISO_LICENCIA.md.