Socket
Book a DemoInstallSign in
Socket

@pouchlab/liteq

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pouchlab/liteq

liteq is a key value document single database engine for js

latest
Source
npmnpm
Version
1.1.1
Version published
Maintainers
1
Created
Source

logo

pouchlite

Next Gen Blazingly fast js storage engine

pouchlite is a document and files storage engine

who can use

any one creating offline first apps,need cache or realtime app

Features

we provide both browser,node and sync server

  • offline first - easy to implement offline first capabilities
  • fast -blazing fast writes and reads
  • built -in orm -interact with your data like boss 🔥
  • reduced file size - small db size from ground up
  • encryption - securely store documents
  • sync - sync data accross pouchlite instances
  • ttl - expire documents
  • collections -store documents in collections

packages included

  • lite-node - backend storage engine
  • lite-browser -browser storage engine
  • liteq -small mighty single db engine
  • lite-server - self-hosted sync server

install

lite-node

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)

docs

lite-browser

provided as @pouchlab/lite-browser

 npm i --save @pouchlab/lite-browser
 import {Pouchlite} from "@pouchlab/lite-browser";
  const usersdb = Pouchlite("users") 
console.log(usersdb)

docs

liteq

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)

docs

lite-server

coming soon..

author

made with love by ajm founder pouchlabs

support

support the author if you realy value my work. you can give star or by giving financial support that would realy motivate me to keep creating awesome stuff for fellow devs

Keywords

sync

FAQs

Package last updated on 30 Dec 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts