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

deferred-storage

v0.0.3

Published

A key-value storage that enables a performant usage of localStorage with the Background Tasks API

Downloads

3

Readme

deferredStorage

Build Status gzip size

deferredStorage is a key-value storage that enables a performant usage of localStorage with the Background Tasks API (requestIdleCallback).

localStorage is still by far the most stable browser storage, but potential performance issues could arise when storing data with considerable size or with complex structure due to these properties:

  • localStorage is a synchronous storage
  • It only stores string value. When storing non-string value, serialization (i.e. JSON.strinify) is needed. Serialization could take up a considerable amount of time when data is large or has a complex structure.

deferredStorage address these issues via deferring the JSON serialization and the storing operation with the requestIdleCallback; values will not be persisted in the same call frame but only when the browser is in the idle state.

Usage

npm install deferred-storage
import deferredStorage from 'deferred-storage';

deferredStorage
	.setWhenIdle("foo", 1)
	.then(() => console.log("value is saved"))

API

setWhenIdle(key, value, options)

Set a key-value data to localStorage when browser is in the idle state.

  • key: string
  • value: Any seriaizable value
  • options: Optional configuration object
    • timeout: If timeout is specified and the value has not been persisted by the time timeout milliseconds have passed, the persistence will be carried out during the next idle period.

Return: A Promise that resolves when the value has been successfully persisted, or when rejects when failed.

hasPending()

Return true when there are any setWhenIdle calls that have not been completed yet; return false otherwise.

const p = deferredStorage.setWhenIdle("foo", 1)

// true
console.log(deferredStorage.hasPending())

// false
p.then(() => console.log(deferredStorage.hasPending()))

commit()

Forcely complete all pending set operations synchronously in the same call frame. It is mostly called right before window is close to make sure all datas are persisted.

window.addEventListener('beforeunload', function() {
    deferredStorage.commit()
});

get(key)

Return the key's value (deserialized) from localStorage

remove(key)

Remove key from the localStorage. Synchronous operation.

clear()

Empty all keys out of the localStorage.

API Design

Only deferredStorage.setWhenIdle() call will be processed in idle time while the rest of the API will be carried out synchronously.

This design is made for the practical reason that: data serialization and localStorage.setItem() are the only potentially expensive operations. All other localStorage APIs are performant and could be called directly without performance concerns.