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

kv-keeper

v1.0.4

Published

Key-value storage for JS that wraps IndexedDB with fallback to LocalStorage

Downloads

4

Readme

KV-Keeper.js

Build Status Code Climate

This is a key-value storage for the JS that wraps IndexedDB with fallback to LocalStorage

  • Very light: 4.7KiB minified and 1.9KiB in gzip.
  • Can store much data when IndexedDB is available.
  • Simple LS-like interface with Node.js-like callbacks.

Table of Contents

Exports and modularity

If YModules or CommonJS module environment is available, Kv Keeper exports to it. Otherwise exports to global variable KvKeeper.

Basic usage

Using default storage. Trying IndexedDB at first and using LocalStorage if IDB is not supported.

var KvKeeper = require('kv-keeper.js')

KvKeeper.setItem('foo', 'bar', function (err) {
  if (err) return console.error("Can't save the foo item")

  console.log('The foo item is successfully stored!')
})

KvKeeper.getItem('foo', function (err, value) {
  if (err) return console.error('Oh no!')

  console.log('The foo item value:', value)
})

KvKeeper.hasItem('foo', function (err, value) {
  if (err) return console.error('Oh no!')

  console.log('Has item? ', value ? 'Yes' : 'No')
})

KvKeeper.removeItem('foo', function (err) {
  if (err) return console.error('Oh no!')

  console.log('There is no more foo')
})

KvKeeper.getKeys(function (err, keys) {
  if (err) return console.error('Oh no!')

  console.log('We have that items in out storage:', keys)
})

KvKeeper.getLength('foo', function (err, length) {
  if (err) return console.error('Oh no!')

  console.log('Our storage have that count of items:', length)
})

KvKeeper.clear(function (err) {
  if (err) return console.error('Oh no!')

  console.log('Our storage is empty now')
})

Options

You can configure the Kv Keeper with configure method:

KvKeeper.configure({
  dbName: 'foo',
  storeName: 'bar',
  defaultType: 'ls'
})

The options are:

  • dbName - name of database when IndexedDB is used or part of a prefix in LocalStorage
  • storeName - name of store in IndexedDB or part of a prefix in LocalStorage
  • defaultType - default storage type. Can be db, ls or auto (try db at first and ls if db is not supported)

Advanced usage

You can get storage with needed driver using KvKeeper.getStorage. Storage instances's method are similar to basic methods and have extra close method that closes DB and destroys instance

var type = 'db' // Can be auto, db or ls or can absent (not required param)

KvKeeper.getStorage(type, function (err, storage) {
  if (err) return console.error('Error =/')

  storage.getItem('foo', function (err, value) {
    if (err) return console.error('Error =/')

    console.log("Look! It's foo!", value)
  })

  storage.close()

  // You need to get new instance after closing
})

Using with promises

Node.js callbacks style allows to wrap methods in promises with many well known libraries:

var Q = require('q')

Q.ninvoke(KvKeeper, 'getItem', 'foo')
  .then(function (val) {
    console.log("Look! It's foo!", value)
  })
  .catch(function (err) {
    console.error('👎')
  })

And you can build promises chain with it:

var Q = require('q')

Q.ninvoke(KvKeeper, 'getStorage')
  .then(function (storage) {
    return Q.ninvoke(storage, 'setItem', 'foo')
  })
  .then(function () {
    console.log('We have set foo!')
  })
  .catch(function (err) {
    // This catch catches errors from all the chain
    console.error('💩')
  })

Global error handling

You can define a global error listeners:

function listener(err) {
  console.error('We have an error', err)
}

KvKeeper.addErrorListener(listener)

KvKeeper.getErrorListeners() // => [listener]

KvKeeper.removeErrorListener(listener)

KvKeeper.removeAllErrorListeners()

Well tested browsers

Store limits measured in special tests. In that tests stored symbols count was tested but we accept hypothesis that 1 symbol == 1 byte of content.

Official notes about limits you can find on the MDN.

Desktop

IndexedDB

In tests of storage size 128MiB was successfully saved in all browsers.

One item limit is between ~9MiB in IE11 and ~128MiB in FireFox 42 and Edge 13.

  • Yandex Browser 1.7+
  • Google Chrome 24+
  • FireFox 40+ (it needs more testing between 30 and 40)
  • InternetExplorer 10+
  • Edge 13+
  • Safari 9+

LocalStorage

One item limit is between ~2.5MiB (in Chrome 22 and Safari 5-9) and exactly ~5MiB (in FireFox 42). So the all storage size.

  • YandexBrowser 1.1+
  • Google Chrome 22+
  • FireFox 10+
  • InternetExplorer 9+
  • Safari 5+
  • PhantomJS 1.9.7+

Mobile

IndexedDB

Safe data chunk is 8MiB. After that some mobile browsers can crash.

Android:

  • YandexBrowser 15.6+
  • Android Browser 5.0.1+
  • Google Chrome 34+
  • FireFox 42+
  • Opera 33+
  • UC Web 10.5+

Safari and WebView (and all browsers) in iOS 8+.

Internet Explorer 10+ (Windows Phone 8).

Known issues:

  1. You should not create more then one collection in Kv-Keeper.js database in iOS to avoid this bug.
  2. Safe to store data chunk is about 8MiB. After that threshold some browsers (like Safari on iOS 8) will crash.
  3. Safari 8 crashes after saving 5 chunks by 5 MiB in a loop.

LocalStorage

One item limit is between ~2.5MiB (Android Browser 4.1.2 and Safari 5-9) and exactly ~5MiB (in FireFox 42 for Android and Internet Explorer 9). So the all storage size.

  • Android Browser 4.1.2+
  • Internet Explorer 9+ (Windows Phone 7.5)
  • iOS 7+ Safari and WebView

For more information see detailed but dirty testing notes

Dist

You can generate dist files with npm run dist but it's not necessary because this command runs automatically with pre-commit git hook

CI and Testing

CI pipeline

CI pipeline of the project has these steps:

  • Check errors with ESLint
  • Check code style with JSCS using yandex preset
  • Run tests with Mocha and PhantomJS

Testing in PhantomJS

Unfortunately only LocalStorage can be tested in CI. It's because of poor technologies support in PhantomJS. Because of it you should look to tests in couple of browsers using this algorithm:

  • Run npm run web-server
  • Open http://localhost:8000/test/specs/test.html ang look at report
  • Then you can generate dist and look at http://localhost:8000/test/specs/test-dist.html

Tests with database dropping

These tests are very unstable because of unpredictable browsers behaviour. Because of it these tests are disabled by default. You can enable them by adding tests=all to query string of tests page. You can do it like this: http://localhost:8000/test/specs/test-dist.html?tests=all

Pre-commit hooks

There are some automatic steps usually done before a commit:

  • Check changed files with ESLint and JSCS
  • Run integration tests, can be skipped by setting SKIP_TESTS=1
  • Prepare dist files (see Dist)
  • Update Table of Contents in README.md

So you don't have to do it by yourself.