
Product
Introducing Socket Fix for Safe, Automated Dependency Upgrades
Automatically fix and test dependency updates with socket fix—a new CLI tool that turns CVE alerts into safe, automated upgrades.
@knaadh/nestjs-drizzle-better-sqlite3
Advanced tools
A NestJS module for integrating Drizzle ORM with BetterSqlite3 driver
A NestJS module for integrating Drizzle ORM with Better-SQLite3 driver
npm install @knaadh/nestjs-drizzle-better-sqlite3 drizzle-orm better-sqlite3
Import the DrizzleBetterSQLiteModule module and pass an options
object to initialize it. You can pass options
object using the usual methods for custom providers as shown below:
import { Module } from '@nestjs/common';
import { AppController } from './app.controller';
import { AppService } from './app.service';
import * as schema from '../db/schema';
import { DrizzleBetterSQLiteModule } from '@knaadh/nestjs-drizzle-better-sqlite3';
@Module({
imports: [
// Method #1: Pass options object
DrizzleBetterSQLiteModule.register({
tag: 'DB_DEV',
sqlite3: {
filename: 'demo.db',
},
config: { schema: { ...schema } },
}),
// Method #2: useFactory()
DrizzleBetterSQLiteModule.registerAsync({
tag: 'DB_PROD',
useFactory() {
return {
sqlite3: {
filename: 'demo.db',
},
config: { schema: { ...schema } },
};
},
}),
// Method #3: useClass()
DrizzleBetterSQLiteModule.registerAsync({
tag: 'DB_STAGING',
useClass: DBConfigService,
}),
],
controllers: [AppController],
providers: [AppService],
})
export class AppModule {}
export class DBConfigService {
create = () => {
return {
sqlite3: {
filename: 'demo.db',
},
config: { schema: { ...schema } },
};
};
}
You can inject the Drizzle instances using their respective tag
specified in the configurations
import { Inject, Injectable } from '@nestjs/common';
import * as schema from '../db/schema';
import { BetterSQLite3Database } from 'drizzle-orm/better-sqlite3';
@Injectable()
export class AppService {
constructor(
@Inject('DB_DEV') private drizzleDev: BetterSQLite3Database<typeof schema>,
@Inject('DB_PROD') private drizzleProd: BetterSQLite3Database<typeof schema>
) {}
async getData() {
const books = await this.drizzleDev.query.books.findMany();
const authors = await this.drizzleProd.query.authors.findMany();
return {
books: books,
authors: authors,
};
}
}
A DrizzleBetterSQLiteModule option
object has the following interface:
export interface DrizzleBetterSQLiteConfig {
sqlite3: {
filename: string | Buffer;
options?: Database.Options | undefined;
};
config?: DrizzleConfig<any> | undefined;
}
sqlite3.filename:
path to the database file. If the database file does not exist, it is createdsqlite3.options:
BetterSQLite optionsconfig:
DrizzleORM configuration.This package is MIT licensed.
FAQs
A NestJS module for integrating Drizzle ORM with BetterSqlite3 driver
We found that @knaadh/nestjs-drizzle-better-sqlite3 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.
Product
Automatically fix and test dependency updates with socket fix—a new CLI tool that turns CVE alerts into safe, automated upgrades.
Security News
CISA denies CVE funding issues amid backlash over a new CVE foundation formed by board members, raising concerns about transparency and program governance.
Product
We’re excited to announce a powerful new capability in Socket: historical data and enhanced analytics.