Open source · MIT

Version control system for files and tables

Store files of any format alongside SQL tables you define in Lix. Branch, diff, merge, and roll back both in one repository. Embed Lix in your product or connect to a server.

Read the docs
JavaScriptRustPythonGo

Any file

Store code, Word, PowerPoint, CAD, and large media files. Plugins provide structured diffs for supported formats; other files have whole-file history.

SQL tables

Define tables in Lix for CRM records, logs, and application data. Query rows and history with SQL.

Embeddable

Run Lix in-process inside your product. Branch, diff, merge, and roll back files and tables through one API.

>350knpm weekly downloads
755GitHub stars

Adoption

Weekly npm downloads of @lix-js/sdk

100k200k300k400k500k
september 2025through Sep 20, 2026
README.md · opral/lixview on GitHub →

Lix

Version control system for files and tables

weekly downloads on NPM Discord GitHub Stars X (Twitter)

Lix is a version control system for files and tables. Store files of any format alongside SQL tables you define in Lix in one repository. Branch, diff, merge, and roll back changes to both. Embed Lix in a product or connect to a server.

One Lix repository with files of many formats beside SQL tables and example rows
  • 📄 Any file. Store text, binaries, and large files, including Word, PowerPoint, CAD, and video. Plugins provide structured diffs and merges for supported formats, including Markdown and CSV. Other formats have whole-file history.
  • 🗃️ SQL tables. Version rows for CRM records, logs, and other application data alongside files.
  • 🗄️ Designed as a database. Files, tables, and history share one ACID OLTP database. Query millions of rows with SQL.
  • ⚡ Real-time collaboration. People and agents share a repository and see changes as they happen.
  • 🔒 Permissions (planned). Per file, per group, stored in the repository and versioned like any other change.
  • 🧩 Embeddable. Runs in-process as a library. Storage is pluggable: memory, filesystem, browser OPFS, or S3.

Try a hosted repository

Try Lix in the cloud with LixRay:

LixRay: a repository for your entire company. Works with Claude, OpenAI, and Gemini.

Why not Git?

Git versions files well, but the tables behind an app usually live in a separate database. Committing a SQLite database to Git versions its bytes, not its rows: changes are hard to review or merge, and each database revision adds to the repository. Lix versions queryable SQL rows alongside files.

Early inlang used Git for translation files and its pull request workflow. As its structured messages grew, it moved to SQLite and Lix so application data could have that workflow too.

GitLix
Process modelCLI-firstLibrary in your process
StorageLocal diskMemory · filesystem · OPFS · S3
Application tablesSeparate databaseVersioned SQL rows with the files
Recording changesManual commitsTracked writes commit automatically
FormatsAny bytes; text diffsAny bytes; structured diffs via plugins
CollaborationPush and pullReal time

Getting started

JavaScript JavaScript · Rust Rust · Python Python · Go Go

npm install @lix-js/sdk @lix-js/storage-filesystem

Run locally with FilesystemStorage:

import { openLix } from "@lix-js/sdk";
import { FilesystemStorage } from "@lix-js/storage-filesystem";

const lix = await openLix({
  storage: new FilesystemStorage({ path: "./repository" }),
});

await lix.execute("INSERT INTO lix_file (path, content) VALUES ($1, $2)", [
  "/notes/status.txt",
  new TextEncoder().encode("ready"),
]);

Or against a server:

const lix = await openLix({
  server: {
    url: "https://example.com/lix/01936f4e-7b6c-7c3d-8f9a-123456789abc",
  },
});

Lix is in alpha.

Prime use cases

Co-locate code, documents, and app state

Code, documents, design files, and media often live in separate tools from the tables behind an app. Lix can keep those files and SQL tables in one repository with one history. A branch can hold a document edit and its related row changes, so you can review, merge, or roll back both together. This also creates a foundation for change proposals and automated checks beyond code.

// A script, a document, and an app table change in one transaction.
await lix.executeBatch([
  {
    sql: "INSERT INTO lix_file (path, content) VALUES ($1, $2)",
    params: ["/automations/report.js", source],
  },
  {
    sql: "INSERT INTO lix_file (path, content) VALUES ($1, $2)",
    params: ["/docs/handbook.docx", handbook],
  },
  {
    sql: "UPDATE orders SET status = 'shipped' WHERE id = $1",
    params: [1002],
  },
]);

Give each customer a repository

Your customers want agents that write automations and edit their documents, with a way to review and undo. Drive's file history does not cover your app's SQL tables. Embed Lix and give each customer a repository that holds their code, documents, spreadsheets, media, and app tables.

Your product creates one Lix repository per customer, each holding a different mix of automations, handbooks, pricing, and knowledge files
// One hosted repository per customer.
const lix = await openLix({
  server: {
    url: `https://example.com/lix/${customer.repositoryId}`,
  },
});

// The agent writes an automation. Lix commits the change automatically.
await lix.execute("INSERT INTO lix_file (path, content) VALUES ($1, $2)", [
  "/automations/booking.ts",
  code,
]);

// Your UI shows the diff. The customer clicks accept or undo.

Build versioned workflows into products

Your app reads and writes SQL rows and normal files. Lix records every change with its author, so history, blame, branching, and rollback are queries instead of features you build.

An app window with a document diff, an accept and undo control, and a history sidebar with checkpoints, all provided by Lix
// A normal app write. "orders" is a table you registered with a Lix schema.
await lix.execute("UPDATE orders SET status = 'shipped' WHERE id = 1002");

// The history sidebar, diff view, and undo button are queries:
const changes = await lix.execute(`
  SELECT created_at, account_id, schema_key, row_pk, snapshot_content
  FROM lix_change
  ORDER BY created_at DESC
`);

Read more about diffs →

How Lix works

Lix puts four capabilities in one library:

Files of any format, SQL tables, version control, and embedding in one library

Files and tables

Plugins can map parts of files to SQL rows. A paragraph, cell, or property becomes a row Lix can version. Your own tables can hold application data in the same repository.

With FilesystemStorage, the file stays available on disk. Its rows are queryable with SQL. Lix tracks changes to both.

A plugin maps /orders.csv to SQL rows with row, field, and value columns

Runs in-process as part of your infrastructure

Lix runs in-process with pluggable storage: memory, filesystem, browser OPFS, or S3. See the Storage docs.

Lix runs in-process inside your product, with an arrow to pluggable storage: memory, filesystem, or S3

Learn more

License

MIT

Start with the JavaScript SDK

MIT licensed. Runs in the browser and on the server.