New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@kanel/knex

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@kanel/knex

Knex extension for Kanel

  • 1.0.0
  • unpublished
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

Knex extension for Kanel

This packages extends Kanel with some Knex specific features.

knex-tables

Knex supports "implicit" type detection with a declared knex/types/tables module. This package can generate that for you. It's a pre-render hook called generateKnexTablesModule.

It will create a file in your output folder called knex-tables.ts which will cover this.

To use it, add it to your .kanelrc.js file:

const { generateKnexTablesModule } = require('@kanel/knex');

module.exports = {
  // ... your config here.

  preRenderHooks: [generateKnexTablesModule],
};

type filter

If you are using Knex for migrations, you will have two tables in your database called knex_migrations and knex_migrations_lock, which you probably don't care about and don't want types for. The knexTypeFilter will remove those for you.

To use it, add it to your .kanelrc.js file:

const { knexTypeFilter } = require('@kanel/knex');

module.exports = {
  // ... your config here.

  typeFilter: knexTypeFilter,
};

Note that type filters are simple predicates. If you have multiple, they can easily be combined with a function like this:

const combineFilters =
  (...filters) =>
  (t) =>
    filters.every((f) => f(t));

migration check

However, you might want to check that your code is in sync with the database in terms of migrations, so that the types that your code was compiled with match what the database looks like.

The generateMigrationCheck pre-render hook will create a file for you that contains a function called validateMigration. This function will check the live database for the knex_migration table and check if it matches what was there when the code was generated.

To use it, add it to your .kanelrc.js file:

const { generatMigrationCheck } = require('@kanel/knex');

module.exports = {
  // ... your config here.

  preRenderHooks: [generateMigrationCheck],
};

Keywords

FAQs

Package last updated on 06 Sep 2022

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc