
Security News
Open Source Maintainers Feeling the Weight of the EU’s Cyber Resilience Act
The EU Cyber Resilience Act is prompting compliance requests that open source maintainers may not be obligated or equipped to handle.
@knaadh/nestjs-drizzle-postgres
Advanced tools
A NestJS module for integrating Drizzle ORM with PostgresJS driver
A NestJS module for integrating Drizzle ORM with PostgresJS driver
npm install @knaadh/nestjs-drizzle-postgres drizzle-orm postgres
Import the DrizzlePostgresModule 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 { DrizzlePostgresModule } from '@knaadh/nestjs-drizzle-postgres';
@Module({
imports: [
// Method #1: Pass options object
DrizzlePostgresModule.register({
tag: 'DB_DEV',
postgres: {
url: 'postgres://postgres:@127.0.0.1:5432/drizzleDB',
},
config: { schema: { ...schema } },
}),
// Method #2: useFactory()
DrizzlePostgresModule.registerAsync({
tag: 'DB_PROD',
useFactory() {
return {
postgres: {
url: 'postgres://postgres:@127.0.0.1:5432/drizzleDB',
},
config: { schema: { ...schema } },
};
},
}),
// Method #3: useClass()
DrizzlePostgresModule.registerAsync({
tag: 'DB_STAGING',
useClass: DBConfigService,
}),
],
controllers: [AppController],
providers: [AppService],
})
export class AppModule {}
export class DBConfigService {
create = () => {
return {
postgres: {
url: 'postgres://postgres:@127.0.0.1:5432/drizzleDB',
},
config: { schema: { ...schema } },
};
};
}
You can inject the Drizzle instances using their respective tag
specified in the configurations
import { Inject, Injectable } from '@nestjs/common';
import { PostgresJsDatabase } from 'drizzle-orm/postgres-js';
import * as schema from '../db/schema';
@Injectable()
export class AppService {
constructor(
@Inject('DB_DEV') private drizzleDev: PostgresJsDatabase<typeof schema>,
@Inject('DB_PROD') private drizzleProd: PostgresJsDatabase<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 DrizzlePostgresModule option
object has the following interface:
export interface DrizzlePostgresConfig {
postgres: {
url: string;
config?: Options<Record<string, PostgresType<any>>> | undefined;
};
config?: DrizzleConfig<any> | undefined;
}
postgres.url:
postgres url connection stringpostgres.config:
Postgres.js driver optionsconfig:
DrizzleORM configurationThis package is MIT licensed.
FAQs
A NestJS module for integrating Drizzle ORM with PostgresJS driver
The npm package @knaadh/nestjs-drizzle-postgres receives a total of 0 weekly downloads. As such, @knaadh/nestjs-drizzle-postgres popularity was classified as not popular.
We found that @knaadh/nestjs-drizzle-postgres 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
The EU Cyber Resilience Act is prompting compliance requests that open source maintainers may not be obligated or equipped to handle.
Security News
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.