npm.io
0.0.5 • Published 2 years ago

@barelyhuman/knex-types

Licence
MIT
Version
0.0.5
Deps
1
Size
46 kB
Vulns
0
Weekly
0
Stars
1

@barelyhuman/knex-types

Generate Model types from Knex

Schema Support

While the below checklist mentions Partial, most of what the library can generate should be usable. It says partial because things like enum and other constraints that can be used to generate better types and models for knex are still not done.

  • Sqlite
  • Postgres (Partial)
  • MSSQL (Partial)
  • Oracle (Partial)

Usage

// in CJS
import { generateTypes } from "@barelyhuman/knex-types";
const knexInstance = knex(config);

generateTypes(knexInstance, {
  output: "./types.d.ts",
}).then((d) => {
  // Done
});
// in ESM
import { generateTypes } from "@barelyhuman/knex-types";
const knexInstance = knex(config);
await generateTypes(knexInstance, {
  output: "./types.d.ts",
});

License

MIT

Keywords