Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@dialexa/knex-plus

Package Overview
Dependencies
Maintainers
5
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dialexa/knex-plus

A lightweight repository library powered by knex

  • 0.2.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
5
Weekly downloads
 
Created
Source

Knex+

NPM Version Build Status Coverage Status

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:

Basic Usage

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

Additional

Type Checking

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');

Auditability

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');

Keywords

FAQs

Package last updated on 10 Aug 2018

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