Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
@dialexa/knex-plus
Advanced tools
This library is meant to serve as an extremely lightweight layer on top of Knex for software developer quality of life purposes. It's not meant to be extensive, support associations (belongs to, has many), etc. If you are looking for something like that, please refer to some of the following:
The repository class can be initialized like so:
import { Repository } from '@dialexa/knex-plus';
const repository = new Repository(knex, 'users');
The constructor takes a knex object (which can be a transaction) and a table name.
The repository method signatures can be found here
import { Repository } from '@dialexa/knex-plus';
// Initialize the repository
const repository = new Repository(knex, 'users');
// Create a record
await repository.create({ email: 'luke@dialexa.com', password: 'password' });
// Fetch a record
const user = await repository.findBy({ email: 'luke@dialexa.com' });
// Update a record
await repository.update({ id: user.id }, { password: 'swordfish' });
// Destroy a record
await repository.destroy({ id: user.id });
The repository can be initialized with an interface if using typescript for type checking on returned records like so:
import { Repository } from '@dialexa/knex-plus';
interface IUser {
id?: string,
email: string,
createdAt: Date,
updatedAt?: Date
}
const repository = new Repository<IUser>(knex, 'users');
This library includes a class AuditableRepository
that will automatically update an updatedAt
column if desired. The class constructor is identical to Repository
and can be initialized like so:
import { AuditableRepository } from '@dialexa/knex-plus';
const repository = new AuditableRepository(knex, 'users');
If you want to customize the updatedAt
column, you can do so:
import { AuditableRepository } from '@dialexa/knex-plus';
const repository = new AuditableRepository(knex, 'users', 'modifiedAt');
FAQs
A lightweight repository library powered by knex
The npm package @dialexa/knex-plus receives a total of 0 weekly downloads. As such, @dialexa/knex-plus popularity was classified as not popular.
We found that @dialexa/knex-plus demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers 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
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.