@golee/mongo-nest
v0.0.10
Published
Embrace the freedom to use mongodb on nest without necessarily resorting to mongoose ๐
Downloads
444
Readme
Mongo Nest
Embrace the freedom to use mongodb on nest without necessarily resorting to mongoose ๐
Installation
npm install @golee/mongo-nest
pnpm add @golee/mongo-nest
Usage
// app.module.ts
@Module({
imports: [MongoModule.forRoot({uri: 'mongodb://localhost:27017'})],
controllers: [],
providers: [],
})
export class AppModule implements NestModule {
}
// app.service.ts
@Injectable()
export class AppService {
constructor(@InjectMongo() public readonly mongoClient: MongoClient) {
}
}