0.0.10 • Published 10 months ago

@golee/mongo-nest v0.0.10

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
10 months ago

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) {
    }
}
0.0.10

10 months ago

0.0.9

10 months ago

0.0.8

10 months ago

0.0.7

10 months ago

0.0.6

1 year ago

0.0.5

1 year ago

0.0.4

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago