1.1.2 • Published 9 months ago

nestjs-logtime-decorator v1.1.2

Weekly downloads
-
License
ISC
Repository
github
Last release
9 months ago

nestjs-logtime-decorator

Typescript decorator to log the duration of a method, for NestJs.

Installation

Install the dependency with:

npm install nestjs-logtime-decorator

Usage

import { Body, Controller, Post } from '@nestjs/common';
import { MeasureTimeAsync } from 'nestjs-logtime-decorator';
import { MyResourceService } from './my-resource.service';
import { MyResourceDto } from './dto/my-resource.dto';
import { MyResource } from '@prisma/client';

@Controller('my-resource')
export class MyResourceController {
  @Post()
  @MeasureTimeAsync({ context: [
    { key: 'name', from: 'Request' },
    { key: 'id', from: 'Response' }
  ] })
  async createOne(
    @Body() dto: MyResourceDto,
  ): Promise<MyResource> {
    return this.service.createOne(dto);
  }

  @Get('something')
  @MeasureTime()
  getSomethingSync(): string {
    return this.service.getSomethingSync();
  }
}

If POST my-resource is called, it will print:

Nest 24377 - 06/26/2023, 10:52:35 PM LOG MyResourceController createOne took 97ms

If GET my-resource/something is called, it will print:

Nest 24377 - 06/26/2023, 10:52:37 PM LOG MyResourceController getSomethingSync took 10ms

If GET my-resource/something is called but throws an error, it will print:

Nest 24377 - 06/26/2023, 10:52:37 PM LOG MyResourceController getSomethingSync (error) took 10ms

1.1.2

9 months ago

1.1.1

9 months ago

1.1.0

9 months ago

1.0.2

11 months ago

1.0.1

11 months ago

1.0.0

11 months ago