@grotto/logysia
Version:
Logging middleware for Bun's Elysia web framework
44 lines (32 loc) • 1.16 kB
Markdown
A logging middleware for the [Elysia](https://elysiajs.com) web framework. Developed with [Bun](https://bun.sh).
```sh
bun add @grotto/logysia
```
```typescript
import { logger } from '@grotto/logysia';
import { Elysia } from "elysia";
if (import.meta.main) {
const app = new Elysia()
// These are the default options. You do not need to copy this down
.use(logger({
logIP: false,
writer: {
write(msg: string) {
console.log(msg)
}
}
}))
.get("/", ctx => "Hello, world!");
}
```
| Option | Description |
| :------: | :------------------------------------------------------------- |
| `logIP` | Displays the incoming IP Address based on the XFF Header |
| `writer` | Uses `write` function to send the log. Defaults to the console |

Logysia also supports printing when there are errors in your application.