drizzle-valibot

drizzle-valibot is a plugin for Drizzle ORM that allows you to generate valibot schemas from Drizzle ORM schemas.

Install the dependencies

npm
yarn
pnpm
bun
npm i drizzle-valibot

Usage

import { pgEnum, pgTable, serial, text, timestamp } from 'drizzle-orm/pg-core';
import { createInsertSchema, createSelectSchema } from 'drizzle-valibot';
import { string, parse, number } from 'valibot';

const users = pgTable('users', {
  id: serial('id').primaryKey(),
  name: text('name').notNull(),
  email: text('email').notNull(),
  role: text('role', { enum: ['admin', 'user'] }).notNull(),
  createdAt: timestamp('created_at').notNull().defaultNow(),
});

// Schema for inserting a user - can be used to validate API requests
const insertUserSchema = createInsertSchema(users);

// Schema for selecting a user - can be used to validate API responses
const selectUserSchema = createSelectSchema(users);

// Overriding the fields
const insertUserSchema = createInsertSchema(users, {
  role: string(),
});

// Refining the fields - useful if you want to change the fields before they become nullable/optional in the final schema
const insertUserSchema = createInsertSchema(users, {
  id: (schema) => number([minValue(0)]),
  role: string(),
});

// Usage

const isUserValid = parse(insertUserSchema, {
  name: 'John Doe',
  email: '[email protected]',
  role: 'admin',
});