"Not the nicest, but a pretty nice and sweet logger for Elysia."
bun add @tqman/nice-logger
import Elysia from "elysia";
import { logger } from "@tqman/nice-logger";
const app = new Elysia()
.use(logger({
mode: "live", // "live" or "combined" (default: "combined")
withTimestamp: true, // optional (default: false)
}));
.get("/", "Hello via Elysia!")
.listen(3000);
Some awesome projects to checkout !!!
-
todos-react-elysia - A simple starter fullstack todos app built with React and Elysia that uses
@tqman/nice-logger
. -
elysia-logger - An Elysia logger plugin to use with pino library, developed by @bogeychan.
-
logixlysia - Another great logger plugin for Elysia developed by @PunGrumpy.
Give a ⭐️ if this project helped you!