Skip to content

LioranGroupOfficial/Liorandb

Repository files navigation

LioranDB

LioranDB Social Card


📖 Documentation & Community


📦 Installation

npm i @liorandb/core

⚡ Getting Started

import { LioranManager } from "@liorandb/core";

async function main() {
  const db = new LioranManager({
    root: "./db"
  });

  await db.init();

  await db.collection("users").insert({
    id: 1,
    name: "John Doe",
    age: 25
  });

  const users = await db.collection("users").find({});

  console.log(users);
}

main();

✅ Output

[
  {
    id: 1,
    name: "John Doe",
    age: 25
  }
]

📄 License

LIORANDB License

About

LioranDB is a lightweight, local-first, peer-to-peer, file-based database with a MongoDB-style Node.js API and a simple CLI for seamless distributed development.

Topics

Resources

License

Security policy

Stars

Watchers

Forks

Packages

 
 
 

Contributors