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

argon-storage

v2.2.0

Published

Argon storage extends default storage API to resolve cross browser compatibility issues

Downloads

39

Readme

Build Status

Argon Storage

Argon storage is a cross-browser wrapper for local storage.

Installation

npm i argon-storage

How does it work?

Argon storage test's if your current browser supports local/session storage API. If not, it stores data in cookies.

With Argon Storage

import ArgonStorage from 'argon-storage';
const store = new ArgonStorage();

store.set('dataKey', 'dataValue');
const value = store.get('dataKey'); // --> 'dataValue'

Without Argon Storage

let value = '';
try {
    localStorage && localStorage.setItem('dataKey', 'dataValue');
    if (localStorage) {
        value = localStorage.getItem('dataKey'); // --> 'dataValue'
    }
} catch(e) {
    // Assuming you have 'setCookie' and 'getCookie' implementation available
    setCookie('dataKey', 'dataValue');
    value = getCookie('dataKey');
}

Argon Storage takes an extra step to verify your data and stores it correctly in local storage.

Without Argon Storage

localStorage.setItem('item', { m: 'helloworld', n: 100 });
localStorage.getItem('item'); // --> [object Object] // Local storage stores everything as strings

With Argon Storage

...
store.set('item', { m: 'helloworld', n: 100 });
store.get('item'); // --> { m: 'helloworld', n: 100 }

Saves an extra step of transforming data before saving it.

You can also store data in session storage. Data validations and fallback still works.

...
store.set('item', 'value', true); // Third parameter enables session storage mode

Argon Storage respects the "type" of data stored.

Without Argon Storage

localStorage.set('item', true); // Stored value is boolean
localStorage.get('item'); // --> 'true' // Retrieved value is a string

With Argon Storage

...
store.set('item', true);
store.get('item'); // --> true // Returns the value as boolean

Argon storage supports data compression

We use Pieroxy's LZW algorithm (custom implementation) to compress input data. Useful to save some bytes when dealing with large dataset.

const store = new ArgonStorage({ compress: true });
...

Argon Storage provide methods to save data directly to cookies

import { setCookie, getCookie } from 'argon-storage';

setCookie('item', 'value');
getCookie('item'); // --> 'value'

By default setCookie creates a session cookie (cookie without an expiry). You can set expiryDays by passing a third parameter.

setCookie('item', 'value', 3); // Cookie expires after 3 days

You can also set cookie path and domain by passing fourth and fifth parameters.

setCookie('item', 'value', null /* Setting up a session cookie */ , '/', 'example.com');

However, if you don't pass them, the path value defaults to / and domain value defaults to current site domain. If for any reason you do not want to set domain (which isn't recommended), you can pass an empty string value.

You can also mark cookies as secure by passing a sixth boolean parameter.

setCookie('item', 'value', null /* Setting up a session cookie */ , '/', 'example.com', true); // Creates a secure cookie

For secure websites, you don't need to do this step. Argon storage by default creates secure cookies by checking if the site uses an https:// URL.

About

Argon Storage is a great utility for local storage. It is tested on majority of desktop and mobile browsers which makes it perfect for production use. It's built-in type resolution reduces a ton of code (and pain to write them). You can see it for yourself in one of the examples above.

Argon Storage supports IE9 browser and above.

Additional functions/methods

Get All Cookies

import { getAllCookies } from 'argon-storage';
getAllCookies(); // --> Returns all stored cookies as list[]
getAllCookies(/test_cookie/); // --> Returns all stored cookies that matches the regex.

Remove Cookie

import { removeCookie } from 'argon-storage';
removeCookie('test'); // Deletes a cookie

Remove local/session storage data

import ArgonStorage from 'argon-storage';
(new ArgonStorage())
  .remove('item'); // Removes an item from local/session storage.
...
(new ArgonStorage())
  .remove('item', true); // Removes item from session storage only.