
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
drizzle-zero
Advanced tools
Generate Zero schemas from Drizzle ORM schemas.
npm install drizzle-zero
# or
bun add drizzle-zero
# or
yarn add drizzle-zero
# or
pnpm add drizzle-zero
Here's an example of how to convert a Drizzle schema to a Zero schema with bidirectional relationships:
You should have an existing Drizzle schema, e.g.:
import {relations} from 'drizzle-orm';
import {pgTable, text, jsonb} from 'drizzle-orm/pg-core';
export const users = pgTable('user', {
id: text('id').primaryKey(),
name: text('name'),
// custom types are supported for any column type!
email: text('email').$type<`${string}@${string}`>().notNull(),
});
export const usersRelations = relations(users, ({many}) => ({
posts: many(posts),
}));
export const posts = pgTable('post', {
id: text('id').primaryKey(),
// this JSON type will be passed to Zero
content: jsonb('content').$type<{textValue: string}>().notNull(),
authorId: text('author_id').references(() => users.id),
});
export const postsRelations = relations(posts, ({one}) => ({
author: one(users, {
fields: [posts.authorId],
references: [users.id],
}),
}));
See the integration test's schema.ts
for more examples of how to define Drizzle schemas with custom types.
You can then add the schema generation script to your package.json:
{
"scripts": {
"generate": "drizzle-zero generate --format",
"postinstall": "npm generate"
}
}
This command will look for a Drizzle Kit config at drizzle.config.ts in the current directory
and use the Drizzle schema defined in it. This must be a single TS file and
not a folder/glob for type resolution to work. It will also use the
casing defined in your drizzle config.
You can change this behavior with -s, --schema <input-file>
as the path to your Drizzle schema file, or
-k, --drizzle-kit-config <input-file> with the path to your drizzle.config.ts file.
By default, it will output your schema to zero-schema.gen.ts.
You can customize the generated file path with -o, --output <output-file>.
If you have Prettier installed, you can use it to format the generated output
with -f, --format.
To specify a custom tsconfig file, use -t, --tsconfig <tsconfig-file>.
It will, by default, look for one in the current directory.
The CLI automatically detects whether .js file extensions are needed in import statements based on your tsconfig's moduleResolution setting. If you're using "moduleResolution": "node16" or "nodenext", the generator will automatically add .js extensions to imports. You can override this behavior with -j, --js-file-extension if needed.
You can also control optional outputs from the generator:
Row[] type exports.createBuilder export.enableLegacyMutators to true in the generated schema).enableLegacyQueries to true in the generated schema)..default() or .defaultFn()) since these won't be available on the Zero client.For more information on disabling legacy mutators and queries, see the Zero documentation.
Important: the Drizzle schema must be included in the tsconfig for
type resolution to work. If they are not included, there will be an error similar to
Failed to find type definitions.
Please reference the Zero docs for how to use your new Zero schema: https://zero.rocicorp.dev/docs/reading-data.
drizzle-zero.config.tsIf you want to customize the tables/columns that are synced by Zero, you can optionally
create a new config file at drizzle-zero.config.ts specifying the tables and/or columns you want to
include in the CLI output:
Important: The config file currently struggles with types for large schemas. In those cases, stick with the default CLI behavior.
import {drizzleZeroConfig} from 'drizzle-zero';
// directly glob import your original Drizzle schema w/ tables/relations
import * as drizzleSchema from './drizzle-schema';
// Define your configuration file for the CLI
export default drizzleZeroConfig(drizzleSchema, {
// Specify which tables and columns to include in the Zero schema.
// This allows for the "expand/migrate/contract" pattern recommended in the Zero docs.
// All tables/columns must be defined, but can be omitted or set to false to exclude them from the Zero schema.
// Column names match your Drizzle schema definitions
tables: {
// this can be set to false
// e.g. users: false,
users: {
id: true,
name: true,
// omit columns to exclude them
email: true,
},
posts: {
// or this can be set to false
// e.g. id: false,
id: true,
content: true,
// Use the JavaScript field name (authorId), not the DB column name (author_id)
authorId: true,
},
},
// Specify the casing style to use for the schema.
// This is useful for when you want to use a different casing style than the default.
// This works in the same way as the `casing` option in the Drizzle ORM.
//
// @example
// casing: "snake_case",
});
You can customize this config file path with -c, --config <input-file>.
Important: the drizzle-zero.config.ts file must be included in the tsconfig
for the type resolution to work. If they are not included, there will be an error similar to
Failed to find type definitions.
drizzle-zero supports many-to-many relationships with a junction table. You can configure them in two ways:
export default drizzleZeroConfig(drizzleSchema, {
tables: {
user: {
id: true,
name: true,
},
usersToGroup: {
userId: true,
groupId: true,
},
group: {
id: true,
name: true,
},
},
manyToMany: {
user: {
// Simple format: [junction table, target table]
groups: ['usersToGroup', 'group'],
},
},
});
Then query as usual, skipping the junction table:
const userQuery = syncedQuery(
z.query.user.where('id', '=', '1').related('groups').one(),
);
const [user] = useQuery(userQuery());
console.log(user);
// {
// id: "user_1",
// name: "User 1",
// groups: [
// { id: "group_1", name: "Group 1" },
// { id: "group_2", name: "Group 2" },
// ],
// }
For more complex scenarios like self-referential relationships:
export default drizzleZeroConfig(drizzleSchema, {
tables: {
user: {
id: true,
name: true,
},
friendship: {
requestingId: true,
acceptingId: true,
},
},
manyToMany: {
user: {
// Extended format with explicit field mappings
friends: [
{
sourceField: ['id'],
destTable: 'friendship',
destField: ['requestingId'],
},
{
sourceField: ['acceptingId'],
destTable: 'user',
destField: ['id'],
},
],
},
},
});
tx as Zero mutatorsFAQs
Generate Zero schemas from Drizzle ORM schemas
The npm package drizzle-zero receives a total of 9,203 weekly downloads. As such, drizzle-zero popularity was classified as popular.
We found that drizzle-zero demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.