Skip to content

Instantly share code, notes, and snippets.

@alexichepura
Created January 25, 2021 08:44
Show Gist options
  • Save alexichepura/65bc7684cdff36ef5eef215cc1f2b834 to your computer and use it in GitHub Desktop.
Save alexichepura/65bc7684cdff36ef5eef215cc1f2b834 to your computer and use it in GitHub Desktop.
const { PrismaClient } = require(".prisma/client")
const prisma = new PrismaClient()
const ping = async () => {
const start = process.hrtime()
await prisma.user.findFirst({select: {id: true}})
const delta = process.hrtime(start)
const ms = delta[0] * 1000 + delta[1] / 1000000
console.log("ping:", ms + "ms")
}
ping()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment