Skip to content
Logixlysia
Esc
navigateopen⌘Jpreview
On this page

Introduction

Get started with Logixlysia, a high-performance logging plugin for Elysia.js

Logixlysia is a powerful logging plugin for Elysia.js that provides structured logging with a fast built-in console logger, plus an optional Pino integration when you need Pino’s ecosystem. Built for production environments, it offers flexible configuration, file logging, and seamless integration with your Elysia applications.

Preview

Features

  • High Performance - Fast built-in console logger with minimal overhead
  • Structured Logging - JSON-first approach for better log analysis
  • Flexible Configuration - Customize format, level, and output destinations
  • File Logging - Save logs to files with automatic rotation
  • Transport Support - Send logs to external services
  • Type Safe - Full TypeScript support

Quick Start

import { Elysia } from 'elysia'
import logixlysia from 'logixlysia'

const app = new Elysia()
  .use(logixlysia())
  .get('/', () => 'Hello World')
  .listen(3000)

Installation

bun add logixlysia

Why Logixlysia?

Logixlysia combines the simplicity of Elysia’s plugin system with a fast built-in console logger, plus an optional Pino integration for teams that want Pino’s ecosystem. It provides a clean API for logging requests, responses, and custom events while maintaining minimal overhead.

Whether you’re building a small API or a large-scale application, Logixlysia scales with your needs—from simple console logging to complex multi-transport setups.

Next Steps

Last updated on August 23, 2026

Was this page helpful?