---
title: Introduction
description: 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.

![Preview](/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
import { Elysia } from 'elysia'
import logixlysia from 'logixlysia'

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

## Installation

```bash
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](/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)
