Add Introduction

p-sw 2025-03-26 22:47:08 +00:00
parent 3679d8f3ac
commit 8b64580745

29
Introduction.md Normal file

@ -0,0 +1,29 @@
# NestLogged
[NestLogged](https://www.npmjs.org/package/nestlogged) is a logging decorator set for [NestJS](https://nestjs.com). It provides simple way to remove logging from the function body in NestJS, so developer can focus on the "real" business code.
You can get logs with just a few simple decorators attached to the class, function, parameter.
Here is the key feature of NestLogged:
* Initialize logger with simple decorator
* Add scope to Logger
* Print logs on function call and return with just a decorator
* Log parameter values and return values as well
* Track each request easily with unique request ID
## Installation
```sh
$ npm install nestlogged
```
If you use Fastify:
```sh
$ npm install nestlogged-fastify
```
> We made completely separate fastify package because we had to overwrite some of the decorators to make sure unique request has single id between middleware decorator and other logging decorator.
You can simply use `nestlogged-fastify` by replacing `nestlogged`.