
Security News
Static vs. Runtime Reachability: Insights from Latio’s On the Record Podcast
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
nestjs-mongo
Advanced tools
NestJS Mongo is a module that provide a little orm. Build with typescript and the nodejs mongodb driver
npm install nestjs-mongo
# or unig yarn
yarn add nestjs-mongo
An example of nestjs module that import the nestjs-mongo
// module.ts
import { Module } from '@nestjs/common';
import { MongoModule } from 'nestjs-mongo';
@Module({
imports: [
MongoModule.forRootAsync({
imports: [],
useFactory: (config: ConfigService) => ({
uri: config.mongoUri
}),
inject: [MyConfigService]
})
]
})
export class MyModule {}
....More coming soon.
A typedoc is generated and available on github https://pop-code.github.io/nestjs-mongo
FAQs
A NestJS module that provide a simple mongodb orm like
We found that nestjs-mongo 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 Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.