prisma-query-inspector
TypeScript icon, indicating that this package has built-in type declarations

1.4.4 • Public • Published

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

Todo List

  • [x] MySQL support
  • [x] PostgreSQL support
  • [x] MariaDB support
  • [x] SQLite support
  • [x] Standard SQL support
  • [x] 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

Package Sidebar

Install

npm i prisma-query-inspector

Weekly Downloads

122

Version

1.4.4

License

MIT

Unpacked Size

1.42 MB

Total Files

42

Last publish

Collaborators

  • omar-dulaimi