0.0.21 • Published 1 month ago

@bogeychan/elysia-logger v0.0.21

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month ago

@bogeychan/elysia-logger

A plugin for Elysia.js for logging using the pino library.

Migration guide

Installation

bun add @bogeychan/elysia-logger

Usage

import { Elysia } from "elysia";
import { logger } from "@bogeychan/elysia-logger";

const app = new Elysia()
  .use(
    logger({
      level: "error",
    })
  )
  .get("/", (ctx) => {
    ctx.log.error(ctx, "Context");
    ctx.log.info(ctx.request, "Request"); // noop

    return "Hello World";
  })
  .listen(8080);

console.log(`Listening on ${app.server!.url}`);

Log to a file, or

import { fileLogger } from "@bogeychan/elysia-logger";

fileLogger({
  file: "./my.log",
});

Pipe the log entries into a stream

import { logger } from '@bogeychan/elysia-logger';

logger({
  stream: ... // default -> console output
});

Include additional request context info for debugging tools

import { logger, type InferContext } from "@bogeychan/elysia-logger";

const myPlugin = () => new Elysia().decorate("myProperty", 42);

// ...

app = app.use(myPlugin());

app
  .use(
    logger({
      /**
       * This function will be invoked for each `log`-method called
       * where you can pass additional properties that need to be logged
       */
      customProps(ctx: InferContext<typeof app>) {
        return {
          params: ctx.params,
          query: ctx.query,
          myProperty: ctx.myProperty,
        };
      },
    })
  )
  .get("/", (ctx) => {
    ctx.log.info(ctx, "Context");

    return "with-context";
  });

Use the logger instance both Standalone and inside Context

import { createPinoLogger } from "@bogeychan/elysia-logger";

const log = createPinoLogger(/* ... */);

app
  .use(log.into(/* ... */))
  .onError((ctx) => {
    log.error(ctx, ctx.error.name);
    return "onError";
  })
  .get("/", (ctx) => {
    ctx.log.info(ctx, "Context");

    throw { message: "1234", name: "MyError" };
  });

Automatic onResponse logging by default; based on pino-http

import { logger } from "@bogeychan/elysia-logger";

app
  .use(
    logger({
      autoLogging: true, // default
      autoLogging: false, // disabled
      autoLogging: {
        ignore(ctx) {
          return true; // ignore logging for requests based on condition
        },
      },
    })
  )
  .get("/", (ctx) => "autoLogging");

Checkout the examples folder on github for further use cases such as the integration of pino-pretty for readable console outputs.

License

MIT

0.0.21

1 month ago

0.0.20

2 months ago

0.0.19

2 months ago

0.0.18

2 months ago

0.0.17

3 months ago

0.0.16

4 months ago

0.0.15

5 months ago

0.0.14

5 months ago

0.0.10

8 months ago

0.0.11

8 months ago

0.0.12

7 months ago

0.0.13

7 months ago

0.0.3

10 months ago

0.0.9

8 months ago

0.0.8

8 months ago

0.0.5

9 months ago

0.0.4

10 months ago

0.0.7

8 months ago

0.0.6

8 months ago

0.0.2

1 year ago

0.0.1

1 year ago