
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
@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
The npm package @kanel/knex receives a total of 0 weekly downloads. As such, @kanel/knex popularity was classified as not popular.
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
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.