1.1.3 • Published 6 years ago

data-fs v1.1.3

Weekly downloads
-
License
MIT
Repository
-
Last release
6 years ago

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

1.1.3

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago