- 📚 Docs: https://db.lioransolutions.com
- 💬 Discord: https://discord.gg/WsWWThjPMp
- 📧 Contact: contact@lioransolutions.com
npm i @liorandb/coreimport { 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();[
{
id: 1,
name: "John Doe",
age: 25
}
]LIORANDB License
