npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@pouchlab/liteq

v1.0.0

Published

liteq is a key value document single database engine for js

Downloads

84

Readme

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 = new Pouchlite("users") 
console.log(usersdb)

docs

liteq

provided as @pouchlab/liteq

 npm i --save @pouchlab/liteq
 import {Liteq} from "@pouchlab/liteq";
const usersdb = liteq({dpath:"/tmp",dbname:"users"}) //pass valid folder path and db name
console.log(usersdb)

docs

lite-server

this sync server is self-hosted check lite-server

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