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

hviz

v1.3.8

Published

CLI tool for visualizing your database schema

Readme

hviz

CLI tool for visualizing your database schema

NPM License: MIT

Transform your database schema into beautiful, interactive ERDs in seconds.

Website · Documentation · Report Bug


🚀 Quick Start

# Run with interactive prompts
bunx hviz

# Or with npx
npx hviz

That's it! hviz will guide you through the rest with interactive prompts.


📦 Installation

Add hviz to your project as a dev dependency:

# npm
npm install -D hviz

# yarn
yarn add -D hviz

# pnpm
pnpm install -D hviz

# bun
bun install -D hviz

🎯 Usage

Interactive Mode (Recommended)

Simply run hviz and follow the prompts:

bunx hviz

The CLI will ask you:

  1. Which ORM you're using (Prisma, Drizzle, or TypeORM)
  2. Path to your schema file (with smart suggestions)

Then it will:

  • Parse your schema
  • Generate an interactive ERD
  • Start a local server
  • Open the visualization in your browser

Non-Interactive Mode

Specify all options directly:

# Prisma
bunx hviz --type prisma --schema prisma/schema.prisma

# Drizzle
bunx hviz --type drizzle --schema drizzle/schema.ts

# TypeORM
bunx hviz --type typeorm --schema typeorm/schema.ts

# Custom port
bunx hviz --type prisma --schema prisma/schema.prisma --port 4000

# PostgreSQL
bunx hviz --type postgres --schema schema.sql

# MySQL
bunx hviz --type mysql --schema schema.sql

# SQLite
bunx hviz --type sqlite --schema schema.sql

Add to package.json Scripts

For quick access, add hviz to your package.json scripts:

{
  "scripts": {
    // Prisma
    "visualize": "hviz --type prisma --schema prisma/schema.prisma --port 4000",

    // Drizzle
    "visualize": "hviz --type drizzle --schema drizzle/schema.ts --port 4000",

    // TypeORM
    "visualize": "hviz --type typeorm --schema typeorm/schema.ts --port 4000"
  }
}

Then run:

bun run visualize

🛠️ CLI Options

| Option | Alias | Description | Default | | ----------- | ----- | ----------------------------------- | ------------------ | | --type | -t | ORM type (prisma, drizzle, typeorm) | Interactive prompt | | --schema | -s | Path to schema file | Interactive prompt | | --port | -p | Port to run server on | 3000 | | --version | -v | Show version | - |


🗄️ Supported ORMs & Databases

ORMs

  • Prisma
  • Drizzle (PostgreSQL, MySQL, SQLite)
  • TypeORM

Raw SQL Files

  • PostgreSQL (.sql files)
  • MySQL (.sql files)
  • SQLite (.sql files)

🤝 Contributing

Contributions are welcome! Please feel free to submit a Pull Request.


📄 License

MIT ©


hviz.tech

Built with ❤️ for developers who love great tools