
Security News
Package Maintainers Call for Improvements to GitHub’s New npm Security Plan
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
@kanel/knex
Advanced tools
This packages extends Kanel with some Knex specific features.
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],
};
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));
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],
};
FAQs
Knex extension for Kanel
We found that @kanel/knex demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.