Databases
pouchlite is a document and files storage engine
any one creating offline first apps or realtime app
we provide both browser,node and sync server
provided as @pouchlab/lite-node
npm i --save @pouchlab/lite-node
import {Pouchlite} from "@pouchlab/lite-node";
const lite = new Pouchlite({path:"./"})
//provide valid path to file or leave blank for default
console.log(lite)
provided as @pouchlab/lite-browser
npm i --save @pouchlab/lite-browser
import {Pouchlite} from "@pouchlab/lite-browser";
const usersdb = Pouchlite("users")
console.log(usersdb)
provided as @pouchlab/liteq
npm i --save @pouchlab/liteq
import {Liteq} from "@pouchlab/liteq";
const usersdb = new Liteq({dpath:"/tmp",dbname:"users"}) //pass valid folder path and db name
console.log(usersdb)
coming soon... self hosted server that syncs
antony m @ajm_ke founder and core maintainer pouchlabs
support the author if you realy value my work. you can give star or by giving financial support that would realy motivate me to maintain pouchlite and to keep creating awesome stuff for fellow devs.