const { Database } = require("esosdb");
const db = new Database({
path: "./esosdb/db.json",//you can write the path of any file you want
space: 2//it's about readability cf. **
})
ESM module example
import { Database } from "esosdb";
const db = new Database({
path: "./esosdb/db.json",
space: 2//it's about readability cf. **
})