项目作者: scalio

项目描述 :
Couchbase module for NestJS
高级语言: TypeScript
项目地址: git://github.com/scalio/nest-couchbase.git
创建时间: 2019-07-22T07:53:27Z
项目社区:https://github.com/scalio/nest-couchbase

开源协议:MIT License

下载


Couchbase for Nest

NestJS Couchbase


A Couchbase module for NestJS

Installation

  1. $ npm i @scalio-oss/nest-couchbase couchbase

Usage

@scalio-oss/nest-couchbase uses couchbase as a data provider and the Repository pattern to handle all items (documents) related operations.

First, let’s create an Entity:

  1. import { Entity } from '@scalio-oss/nest-couchbase';
  2. @Entity('cats')
  3. export class Cat {
  4. name: string;
  5. }

Where cats is the Couchbase bucket name (optional).

Then, we need to import CouchbaseModule in our root AppModule:

  1. import { Module } from '@nestjs/common';
  2. import { CouchbaseModule } from '@scalio-oss/nest-couchbase';
  3. @Module({
  4. imports: [
  5. CouchbaseModule.forRoot({
  6. url: 'couchbase://127.0.0.1',
  7. username: 'couchbase',
  8. password: 'couchbase',
  9. defaultBucket: {
  10. name: 'test',
  11. password: 'password',
  12. },
  13. buckets: [
  14. {
  15. name: 'another_bucket',
  16. password: 'another_password',
  17. },
  18. ],
  19. }),
  20. ],
  21. })
  22. export class AppModule {}

In our CatsModule we need to initiate repository for our Cat entity:

  1. import { Module } from '@nestjs/common';
  2. import { CouchbaseModule } from '@scalio-oss/nest-couchbase';
  3. import { CatsService } from './cats.service';
  4. import { CatsController } from './cats.controller';
  5. import { Cat } from './cat.entity';
  6. @Module({
  7. imports: [CouchbaseModule.forFeature([Cat])],
  8. providers: [CatsService],
  9. controllers: [CatsController],
  10. })
  11. export class CatsModule {}

And here is the usage of the repository in the service:

  1. import { Injectable } from '@nestjs/common';
  2. import { InjectRepository, Repository } from '@scalio-oss/nest-couchbase';
  3. import { Cat } from './cat.entity';
  4. @Injectable()
  5. export class CatsService {
  6. constructor(
  7. @InjectRepository(Cat)
  8. private readonly catsRepository: Repository<Cat>,
  9. ) {}
  10. findOne(id: string): Promise<Cat> {
  11. return this.catsRepository.get(id);
  12. }
  13. }

License

MIT

Credits

Created by @zMotivat0r @ Scalio

About us