omar-dulaimi / prisma-query-inspector

Prisma +2 tool to inspect all queries going to the database, formatted and with all params if any

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

npm version npm HitCount npm

Prisma Query Inspector

Prisma 2 tool to inspect all queries going to the database, formatted and with all params if any

prisma-query-inspector

Buy Me A Coffee

Todo List

  • MySQL support
  • PostgreSQL support
  • MariaDB support
  • SQLite support
  • Standard SQL support
  • Make UI responsive

Table of Contents

Installation

Using npm:

$ npm install prisma-query-inspector --save-dev

Using yarn:

$ yarn add prisma-query-inspector --dev

Usage

1- Enable Prisma query logs

const prisma = new PrismaClient({
  log: [
    {
      emit: "event",
      level: "query",
    },
  ],
});

2- Register the query handler

import { queryHandler } from "prisma-query-inspector";
prisma.$on("query", queryHandler);

3- Add a new npm script in package.json

"inspect-queries": "prisma-query-inspector start"

4- Now run it, then run your project afterwards

npm run inspect-queries

You're done!



Available Options

  • port: number - inspector server port

    • alias: p
    • default: 7001
  • language: string - database language used to format the queries

    • alias: l
    • default: sql
    • possible values: sql | mysql | mariadb | postgresql

About

Prisma +2 tool to inspect all queries going to the database, formatted and with all params if any

License:MIT License


Languages

Language:TypeScript 60.9%Language:JavaScript 18.4%Language:CSS 11.0%Language:HTML 9.7%