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-mongoAn 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
- write wiki
- add more tests
- add examples