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

rich-local-storage

v1.1.0

Published

Rich web browser local storage that supports expiry, complex data structures (JSON objects and arrays) storing and retrieving. Works well with latest ReactJS

Downloads

3

Readme

rich-local-storage

If you are looking to enrich the standard web localStorage with abilities to...

  • store primitive data structures
  • store JSON objects
  • store arrays
  • act as cache with automated expiry
  • is compatible with JavaScript and TypeScript
  • work well and simple with ReactJS

...this is your package to go for.

It's small, it's simple, it works.

Quick guide

Using localStorage is about storing, retrieving, purging stored values and clearing the storage.

Optionally, you can use this package providing expiry for stored items and calling maintain() which will automatically clear your storage from items that expired.

store()

store allows you to push an item to the localStorage

store = (key: string, item: StoredItem): void

providing the following data:

type StoredItem = {
    expiry: number // amount of seconds from the moment the value is stored
    value: string | number | KeyAny | string[] | number[] | null // value you'd like to store
}

Example usage:

store('user', 
    expiry: 3600,
    value: {
        name: 'Anakin',
        surname: 'Skywalker'
    }
)

NOTE: expiry should be a value in seconds from the moment the value was stored, after reaching which, it will be automatically purged

Example:

store('arr', 
    expiry: 300,
    value: ['Wow', 'this']
)

will keep the item alive for 300 seconds. After that time, attempt of using retrieve('arr') will return null.

More usage examples in the test file in the repository.

retrieve()

Now, if you'd like to retrieve the stored value, (assuming its expiry didn't pass)

retrieve = (key: string): StoredItemValue | null

which in our case would be:

retrieve('user') // that returns: { name: 'Anakin', surname: 'Skywalker' }

maintain()

Maintain is used to control the expiry of your item.

maintain = (): void

If you don't call maintain() in your app then the items will be stored indefinitely (following the standard localStorage principles).

ReactJS support

If you intend to use this package in your React application, it is best to call the maintain() function just once, upon the component mount.

Example:

public componentDidMount(): void {
    maintain()
}

or using hooks:

useEffect(() => {
    maintain()
}, [])

purge()

You can purge the specific item in the storage:

purge = (key: string): void

for example:

purge('user')

clear()

You can also clear the whole storage completely.

clear = (): void

Example use:

clear()

Questions

Feel free to raise an issue in Github Issues of this package.