Skip to main content

Introduction

Litara is a self-hosted ebook library manager. It lets you organize, read, and manage your personal ebook collection from a web browser — no cloud subscription required.

Features

  • Library scanning — Automatically imports ebooks from a watched folder. Supports .epub, .mobi, .azw, .azw3, and .pdf formats. .cbz (comic book archives) is also supported in beta — metadata is read from ComicInfo.xml if present.
  • Metadata extraction — Pulls title, author, cover art, and other metadata directly from ebook files.
  • Metadata enrichment — Manually fetch extended metadata (description, genres, ratings) from Google Books for any book.
  • Email delivery — Send books directly to an e-reader via SMTP (e.g. Kindle email).
  • OPDS support — Exposes your library via OPDS v1 and v2 catalogs for compatible reading apps.
  • Reading progress — Tracks your reading progress and annotations per book.
  • Shelves — Organize books into custom shelves and smart shelves with auto-matching rules.
  • Multi-user — JWT-based authentication supports multiple independent user accounts.

Book detail modal

Architecture

Litara is composed of two apps and one package:

ComponentDescription
apps/apiNestJS REST API and library scanner
apps/webReact + Vite web frontend
packages/mobi-parserMetadata extractor for .mobi / .azw files
packages/cbz-parserMetadata and cover extractor for .cbz files (beta)

The API stores all data in PostgreSQL and exposes a Swagger UI at /docs when running.

Next Steps