🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

mysql-to-zod

Package Overview
Dependencies
Maintainers
0
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mysql-to-zod

Convert MySQL schemas into Zod schemas

2.3.1
latest
npm
Version published
Weekly downloads
16
77.78%
Maintainers
0
Weekly downloads
 
Created
Source

mysql-to-zod

Convert MySQL schemas into Zod schemas

default

Project

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.

Overview

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.

CLI Example

npx mysql-to-zod mysql://user:pass@localhost:3306/dbname

Now copy your new .ts files into your TypeScript application project.

Demo

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)
);

image

Run from CLI or with this project open in your IDE

npx mysql-to-zod@latest mysql://user@pass:3306/test

Output

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>;

Config File Options

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.

Config File Examples

image

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;

License

MIT

Keywords

typescript

FAQs

Package last updated on 19 Sep 2024

Did you know?

Socket

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.

Install

Related posts