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.10.0

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

Downloads

89

Readme

quick-outerbase

A database GUI in your terminal. Give it a DATABASE_URL and spin up a local web UI to browse, query and edit your database with one command, in seconds. An open-source, multi-engine alternative to Prisma Studio, Drizzle Studio, DbGate, TablePlus and Outerbase Studio.

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

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

It's a thin launcher (zero dependencies): it compiles nothing on your machine. It detects your platform, downloads a precompiled runtime (standalone, ~28 MB) from GitHub Releases once, caches it and starts. First run: seconds. Subsequent runs: instant.

⚠️ Unofficial community fork. Not affiliated with or endorsed by Outerbase. Fork of Outerbase Studio, under AGPL-3.0. Full source code: https://github.com/joajo13/quick-outerbase

Usage

# PostgreSQL  (Prisma-style ?schema= → 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://my-db.turso.io?authToken=XXXX"

# SQLite  (relative paths resolve against your current folder)
npx quick-outerbase --url "file:./data.sqlite"

# DynamoDB  (credentials do NOT go in the URL: the server resolves them from the AWS chain)
AWS_ACCESS_KEY_ID=... AWS_SECRET_ACCESS_KEY=... \
  npx quick-outerbase --url "dynamodb://us-east-1"

You can also pass the URL via the DATABASE_URL env var. Flags: --port <n> (default 3008), --no-open (don't open the browser). On Ctrl+C, it frees the port with no zombies.

Requirements

  • Node 20.9+ and tar on the PATH (Windows 10+ ships it as tar.exe).
  • Platforms with a precompiled runtime: win32-x64, linux-x64. For others (macOS included), run from source: npx github:joajo13/quick-outerbase --url "...".

Useful environment variables

  • QUICK_OUTERBASE_CACHE — where to cache the runtime (default ~/.cache/quick-outerbase).
  • QUICK_OUTERBASE_BUNDLE — use a local .tar.gz instead of downloading (offline/testing).

License

AGPL-3.0-only. Fork of Outerbase Studio (license and attribution preserved). See LICENSE and AVISO_LICENCIA.md.