
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
db2objection
Advanced tools
Generate ObjectionJS (or plain object) models from database tables. (Note: This is an ESM package from v0.1.0)
Install cli globally with npm or your preferred package manager.
$ npm install -g db2objection
db2objection currently supports the following databases:
db2obj initCreate the db2objection config js file. This should be the first step to using db2objection in your project. The
config file is where you would configure the database connection parameters that db2objection will use to connect to
your database.
Options:
--reset-config Reset the config file if it already exists.
db2obj generateGenerate ObjectionJS model classes.
Options:
-c | --case <char> (snake | camel | ignore) Indicate the naming case for the generated model properties.
--pojo Specify whether plain Typescript model classes will be generated, and not classes extending Objection.js Model class.
--db, --database <char> Specify the database to connect to. This overrides the database value that is set in the config file.
--dir <char> Specify target directory path relative to the project root.
--scope <char> Used to create a folder namespace for generated models.
db2obj test-connectionThis returns "ok" if db2objection is able to connect to the database successfully.
The db2objection config file is a js module with the following contents:
require('dotenv').config({
path: '.env'
});
module.exports = {
/**
* Knex configurations.
*/
knex: {
client: 'mysql2',
connection: {
database: process.env.DB_NAME,
host: process.env.DB_HOST,
port: process.env.DB_PORT,
user: process.env.DB_USER,
password: process.env.DB_PASSWORD
}
},
modelsOutputDir: '__db2obj/generated/', // Relative path where the objection models would be saved. If path does not exist, the default path will be used.
ignoreTables: [], // Tables to be ignored. e.g. migration tables and other tables used by frameworks.
case: 'camel' // 'camel' | 'snake' | 'ignore'
};
FAQs
Generate ObjectionJS models from database tables
The npm package db2objection receives a total of 3 weekly downloads. As such, db2objection popularity was classified as not popular.
We found that db2objection demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.