zod-dbs
v2.1.0
Published
Opinionated Zod schema generator for databases
Downloads
844
Maintainers
Readme
zod-dbs
A library for generating Zod schemas from database schemas.
Read the full documentation for usage details using the cli which wraps this library. https://github.com/msunbay/zod-dbs
Installation
npm install zod-dbs zod-dbs-[provider]Usage
import { generateZodSchemas } from 'zod-dbs';
import { createProvider } from 'zod-dbs-[provider]';
await generateZodSchemas({
provider: createProvider(),
config: {
// See the project and provider documentation for available options
},
});