data-fs

1.1.3 • Public • Published

data-fs

create read update an delete binary record (database like file system)

install

npm i data-fs -S

exemples

const {DataFs} = require("data-fs")
var file = new DataFs("database.db")
file.insert(1,"hello world")
file.insert(2,"hello world!!!")
file.loop(function(record ,id){
     console.log(record,id)
})

// console.log 
// {id=1,value:"hello world"}
// {id=2,value:"hello world!!!"}

Documentaion

/data-fs/

    Package Sidebar

    Install

    npm i data-fs

    Weekly Downloads

    6

    Version

    1.1.3

    License

    MIT

    Unpacked Size

    11.3 kB

    Total Files

    5

    Last publish

    Collaborators

    • kyranis-studio