> ## Documentation Index
> Fetch the complete documentation index at: https://logixlysia-claude-elysia-v2-open-beta-i2faib.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Introduction

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

Logixlysia is a powerful logging plugin for [Elysia.js](https://elysiajs.com/) that provides structured logging with a fast built-in console logger, plus an optional [Pino integration](/docs/integrations/pino) when you need Pino's ecosystem. Built for production environments, it offers flexible configuration, file logging, and seamless integration with your Elysia applications.

<img src="https://mintcdn.com/logixlysia-claude-elysia-v2-open-beta-i2faib/u8bgvPyg42fO-AGk/preview.png?fit=max&auto=format&n=u8bgvPyg42fO-AGk&q=85&s=54c8f493ee31edbe2d7d1102a6d7a7c7" alt="Preview" width="1600" height="860" data-path="preview.png" />

## 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

```ts theme={null}
import { Elysia } from 'elysia'
import logixlysia from 'logixlysia'

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

## Installation

This release line targets the [Elysia 2 open beta](https://elysiajs.com/blog/elysia-20) and is published under the `next` dist-tag:

```bash theme={null}
bun add logixlysia@next elysia@next
```

Still on Elysia 1.4? Stay on the `latest` tag (`bun add logixlysia`) — see [Elysia 2 support](/docs/elysia-2).

## Why Logixlysia?

Logixlysia combines the simplicity of Elysia's plugin system with a fast built-in console logger, plus an optional [Pino integration](/docs/integrations/pino) 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

* [Get started with basic usage](/docs/usage)
* [Explore features](/docs/features/startup)
* [Learn about configuration options](/docs/usage#configuration)
