Skip to content

Latest commit

 

History

History
12 lines (11 loc) · 241 Bytes

README.md

File metadata and controls

12 lines (11 loc) · 241 Bytes

ZikoDB

Syntaxe

 const Db1 = new Db('Data1');
async function main() {
    const students = await Db1.getDoc('students')
    await students.write('student_name', { notes: ["13","17"] })
    await students.save();
    }
main();