Skip to main content

qube

Deno postgres query builder with excellent type safety.

test deno doc codecov

import qube from "https://deno.land/x/qube/mod.ts";

const uri = "...";
const db = qube(uri);

const user = await db
  .selectFrom("users")
  .where("id", "=", 1)
  .limit(1)
  .first();