New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@drizzle-lab/visualizer

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@drizzle-lab/visualizer

Visualizer for Drizzle Kit.

latest
Source
npmnpm
Version
0.8.0
Version published
Maintainers
1
Created
Source

@drizzle-lab/visualizer

Visualizer for Drizzle Kit.

Installation

npm install @drizzle-lab/visualizer@latest

Usage

[!IMPORTANT] Do not forget to import the CSS file.

import "@drizzle-lab/visualizer/dist/style.css";
"use client";

import {
  DrizzleVisualizer,
  DrizzleVisualizerLegend,
} from "@drizzle-lab/visualizer";

import "@drizzle-lab/visualizer/dist/style.css";

import * as schema from "../database/schema";

export function Visualizer() {
  return (
    <div className="size-full flex flex-col">
      <DrizzleVisualizer schema={schema} dialect="postgresql" theme="dark" />
      <DrizzleVisualizerLegend theme="dark"/>
    </div>
  );
}

Theme

The Drizzle Visualizer supports two themes: dark and light. You can specify the theme using the theme prop.

<DrizzleVisualizer schema={schema} dialect="postgresql" theme="dark" />

FAQs

Package last updated on 29 Aug 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts