https://github.com/svtslv/nestjs-knex
Knex module for Nest
https://github.com/svtslv/nestjs-knex
database knex nest nestjs orm
Last synced: about 1 year ago
JSON representation
Knex module for Nest
- Host: GitHub
- URL: https://github.com/svtslv/nestjs-knex
- Owner: svtslv
- Created: 2020-02-28T20:05:04.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-06-16T10:47:07.000Z (about 2 years ago)
- Last Synced: 2025-05-01T09:54:10.353Z (about 1 year ago)
- Topics: database, knex, nest, nestjs, orm
- Language: TypeScript
- Size: 698 KB
- Stars: 65
- Watchers: 3
- Forks: 6
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# NestJS Knex
## Table of Contents
- [Description](#description)
- [Installation](#installation)
- [Examples](#examples)
- [License](#license)
## Description
Integrates Knex with Nest
## Installation
```bash
npm install nestjs-knex knex
```
You can also use the interactive CLI
```sh
npx nestjs-modules
```
## Examples
```bash
npm install nestjs-knex knex sqlite3
```
### KnexModule.forRoot(options, connection?)
```ts
import { Module } from '@nestjs/common';
import { KnexModule } from 'nestjs-knex';
import { AppController } from './app.controller';
@Module({
imports: [
KnexModule.forRoot({
config: {
client: "sqlite3",
useNullAsDefault: true,
connection: ':memory:',
},
}),
],
controllers: [AppController],
})
export class AppModule {}
```
### KnexModule.forRootAsync(options, connection?)
```ts
import { Module } from '@nestjs/common';
import { KnexModule } from 'nestjs-knex';
import { AppController } from './app.controller';
@Module({
imports: [
KnexModule.forRootAsync({
useFactory: () => ({
config: {
client: "sqlite3",
useNullAsDefault: true,
connection: ':memory:',
},
}),
}),
],
controllers: [AppController],
})
export class AppModule {}
```
### InjectKnex(connection?)
```ts
import { Controller, Get, } from '@nestjs/common';
import { InjectKnex, Knex } from 'nestjs-knex';
@Controller()
export class AppController {
constructor(
@InjectKnex() private readonly knex: Knex,
) {}
@Get()
async getHello() {
if (!await this.knex.schema.hasTable('users')) {
await this.knex.schema.createTable('users', table => {
table.increments('id').primary();
table.string('name');
});
}
await this.knex.table('users').insert({ name: 'Name' });
const users = await this.knex.table('users');
return { users };
}
}
```
## License
MIT