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

dboc

v0.0.2

Published

Modern Database Operations Center - A developer-friendly database administration tool for PostgreSQL and SQLite

Readme

DBOC - Database Operations Center

A modern, developer-friendly database administration tool for PostgreSQL and SQLite. DBOC offers a clean UI, fast workflow, and essential features for managing your databases. The MVP is now released—advanced features are in progress!

DBOC Demo


🚀 MVP Features

  • Connect to Databases: PostgreSQL and SQLite supported (MySQL/MariaDB, DuckDB coming soon)
  • Browse Schemas & Tables: Visual navigation of schemas, tables, and columns
  • Table Data Grid: View, filter, sort, and paginate table data
  • Edit Data: Insert, update, and delete rows
  • Run SQL Queries: Execute custom SQL, view results, and query history
  • Schema Management: Add/drop columns, manage indexes and foreign keys (PostgreSQL)
  • Query History: Track and review previous queries
  • Modern UI/UX: Responsive, dark/light themes, keyboard shortcuts

🛠️ Technology Stack

  • Frontend: Next.js 14, TypeScript, Tailwind CSS, shadcn/ui, Zustand, React Query, Monaco Editor
  • Backend: Next.js API Routes, Node.js
  • Database Drivers: pg, better-sqlite3
  • Dev Tools: ESLint, Prettier, Jest, Storybook, Docker

⚡ Quick Start

Local Development

  1. Install dependencies
    pnpm install
  2. Run the app
    pnpm dev
  3. Visit http://localhost:3000

Docker

Run the latest release with Docker:

docker run -p 3000:3000 niradler/dboc

🧩 API Overview

DBOC exposes RESTful endpoints for all major operations. Example endpoints:

  • GET /api/connections — List all connections
  • POST /api/connections — Add a new connection
  • GET /api/connections/:id/schema — List schemas
  • GET /api/connections/:id/schema/:schema/tables — List tables
  • GET /api/connections/:id/schema/:schema/tables/:table — Get table data (with pagination, filtering, sorting)
  • POST /api/connections/:id/schema/:schema/tables/:table — Insert row
  • PUT /api/connections/:id/schema/:schema/tables/:table — Update row
  • DELETE /api/connections/:id/schema/:schema/tables/:table — Delete row
  • POST /api/connections/:id/query — Run custom SQL
  • GET /api/history — Query history

More endpoints for schema/index/foreign key management are available. See the app/api/ directory for details.


🗺️ Roadmap

  • MySQL/MariaDB, DuckDB support
  • Advanced schema editing (views, constraints, stored procedures)
  • Data import/export (CSV, JSON, SQL)
  • Visual query builder
  • Multi-tab interface
  • User authentication & multi-user support
  • Swagger/OpenAPI docs

🤝 Contributing

Contributions are welcome! Please open issues or pull requests for bugs, features, or suggestions.


📦 Docker Image


License

MIT