PicaDeckSync

Databases, by design.

Installation

Install the core package and a parser for your ORM. That's all you need.

1. Install the core package

The core package provides the Express middleware, the HTML renderer, and the embedded visualizer bundle.

npm install @picadeck/core

2. Install a parser for your ORM

Each parser is a separate package so you only install what you need. Pick the one that matches your ORM:

ORM / SourceInstall command
Mongoosenpm install @picadeck/mongoose-parser
TypeORMnpm install @picadeck/typeorm-parser
Prismanpm install @picadeck/prisma-parser
Sequelizenpm install @picadeck/sequelize-parser
Drizzlenpm install @picadeck/drizzle-parser
SQL (raw DDL)npm install @picadeck/sql-parser

3. Framework-specific packages (optional)

If you use NestJS or Next.js, install the corresponding wrapper for tighter integration:

# For NestJS
npm install @picadeck/nestjs

# For Next.js
npm install @picadeck/nextjs