"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")
}));
.get("/", "Hello via Elysia!")
.listen(3000);
Give a ⭐️ if this project helped you!