Convert MySQL schemas into Zod schemas
Ideas, Q&A, and notes about your projects are welcome in GitHub Discussions.
Please submit enhancement requests and bug reports to the GitHub repo.
This online documentation is included in the project for local browsing and changes.
Docs include information about dependencies, getting started, detailed configuration options, and tips for using this software effectively.
This is how this utility works:
- Connect to MySQL.
- Retrieve the CREATE TABLE statement.
- Parse that text with node-sql-parser.
- Output a .ts file with Zod schema.
npx mysql-to-zod mysql://user:pass@localhost:3306/dbname
Now copy your new .ts files into your TypeScript application project.
This SQL query was used to generate the MySQL table in the following screenshot.
CREATE TABLE todo (
id INT NOT NULL AUTO_INCREMENT,
title VARCHAR(255) NOT NULL,
description TEXT,
created_at DATETIME DEFAULT CURRENT_TIMESTAMP,
updated_at DATETIME DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (id)
);
npx mysql-to-zod@latest mysql://user@pass:3306/test
import { z } from "zod";
export const TodoSchema = z.object({
id: z.number(),
title: z.string(),
description: z.string().nullable(),
created_at: z.date().nullable(),
updated_at: z.date().nullable(),
});
export type Todo = z.infer<typeof TodoSchema>;
The file mysqlToZod.config.js plays a significant role in each run.
With a complete config file, details like the above connection string are not required in the CLI.
For each project, create and configure a new config file.
All options are detailed in the online documentation.
const options = {
/*
output
If you set the following
The output schemas will be in "./mysqlToZod/schema.ts"
*/
output: {
outDir: "./mysqlToZod",
fileName: "schema.ts",
},
dbConnection: "mysql://root:root@localhost:3306/mydb", //argv0 is priority 1. thisConfig is priority 2.
tableNames: [], //if empty, all tables.
};
module.exports = options;
If dbConnection contains "@" or other special characters, pass it as Config for Knex.
/** @type {import("./src/options/options").MysqlToZodOption} */
const options = {
/* You can specify the destination directory and file name. */
output: {
outDir: "./mysqlToZod",
fileName: "schema.ts",
},
/*
You can specify the URL to connect to MySQL(mysql://user:pass@host:port:dbName)
or
You can specify the connection information for MySQL.
*/
dbConnection: {
host: "127.0.0.1",
port: 3306,
user: "root",
password: "root",
database: "test",
},
/* if empty, all tables */
tableNames: [],
/* Below are the ADVANCED OPTIONS. A detailed explanation will be written at a later date. */
comments: {
table: {
active: true,
format: "// [table:!name] : !text",
},
column: {
active: true,
format: "// !name : !text",
},
},
type: {
declared: "type",
format: "pascal",
prefix: "",
suffix: "",
replacements: [],
},
schema: {
format: "camel",
prefix: "",
suffix: "Schema",
replacements: [],
nullType: "nullish",
inline: false,
zod: {
implementation: [],
references: [],
},
},
};
module.exports = options;
MIT