Skip to content

hyperloris/nestjs-tile38

Folders and files

NameName
Last commit message
Last commit date
Sep 22, 2022
Sep 10, 2022
May 14, 2024
Sep 25, 2024
Sep 10, 2022
Sep 10, 2022
Sep 10, 2022
Sep 13, 2022
Sep 19, 2022
May 14, 2024
Sep 17, 2022
May 14, 2024
Oct 19, 2024
Sep 25, 2024
Sep 10, 2022
Sep 10, 2022

Repository files navigation

Nest Logo

NPM Version Package License NPM Downloads CI Status Coverage

Description

Tile38 module for Nest. This package is based on Tile38-ts, so visit its documentation for any questions about the API.

Installation

$ npm i --save nestjs-tile38 @iwpnd/tile38-ts

Quick Start

First, import the Tile38Module into your root module:

import { Module } from '@nestjs/common';
import { Tile38Module } from 'nestjs-tile38';

@Module({
  imports: [
    Tile38Module.forRoot({
      url: 'redis://localhost:9851',
    }),
  ],
})
export class AppModule {}

Second, inject the Tile38 client into any of your injectables by using the InjectTile38 decorator:

import { Injectable } from '@nestjs/common';
import { InjectTile38 } from 'nestjs-tile38';
import { Tile38 } from '@iwpnd/tile38-ts';

@Injectable()
export class AppService {
  public constructor(@InjectTile38() private readonly tile38: Tile38) {}
}

License

Licensed under MIT.

Acknowledgements