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

redux-browser-storage

v1.1.0

Published

Use redux to manage localStorage and sessionStorage data

Downloads

9

Readme

redux-browser-storage

Use redux to manage specific data saved in either localStorage or sessionStorage

Table of contents

Installation

$ npm i redux-browser-storage --save

Usage

Include the storage type(s) you want into your standard store creation, assigning to any name you would like.

import {
  combineReducers,
  createStore
} from 'redux';
import {
  localReducer
} from 'redux-browser-storage';

const reducers = combineReducers({
  ...otherReducers,
  local: localReducer // or whatever key you want
});

export default createStore(reducers);

Connect your component to redux, and when you want to update the values use the provided redux actions.

import React, {
  PureComponent
} from 'react';
import {
  localActions
} from 'redux-browser-storage';
import {
  connect
} from 'redux-react';

const mapStateToProps = ({local}) => {
  return {
    local
  };
};

const mapDispatchToProps = {
  ...localActions
};

@connect(mapStateToProps, mapDispatchToProps)
class App extends PureComponent {
  onClickButton = () => {
    this.props.setLocalValues({
      count: this.props.local.count + 1
    });
  };

  render() {
    return (
      <button
        onClick={this.onClickButton}
        type="button"
      >
        Count: {this.props.local.count || 0}
      </button>
    )
  }
}

All data values in your reducer are automatically synced to their respective browser storage, and the reducer's initial state is based off of existing values in that storage, so all saved values are automatically rehydrated on page load.

API

localActions

clearLocalValues

clearLocalValues()

Clears the values in localStorage that were stored via redux-browser-storage.

onClickClear = () => {
  this.props.clearLocalValues();
};

deleteLocalValues

deleteLocalValues(keys: (Array<string>|string))

Deletes the value(s) at the location of keys in localStorage. Nested values are allowed by use of dot or bracket notation.

// standard
deleteLocalValues('foo');

// Nested
deleteLocalValues('foo.bar[0].baz');

// multiple
deleteLocalValues(['foo', 'bar[0].baz']);

setLocalValues

setLocalValues(values: Object)

Sets the value(s) in localStorage based on the keys of the object passed. Nested values are allowed by use of dot or bracket notation.

// standard
setLocalValues({
  foo: 'bar'
});

// Nested
setLocalValues({
  'foo.bar[0]': 'baz'
});

// multiple
setLocalvalues({
  foo: 'bar',
  'bar[0]': 'baz'
});

sessionActions

clearSessionValues

clearSessionValues()

Clears the values in sessionStorage that were stored via redux-browser-storage.

clearSessionValues();

deleteSessionValues

deleteSessionValues(keys: (Array<string>|string))

Deletes the value(s) at the location of keys in sessionStorage. Nested values are allowed by use of dot or bracket notation.

// standard
deleteSessionValues('foo');

// Nested
deleteSessionValues('foo.bar[0].baz');

// multiple
deleteSessionValues(['foo', 'bar[0].baz']);

setSessionValues

setSessionValues(values: Object)

Sets the value(s) in sessionStorage based on the keys of the object passed. Nested values are allowed by use of dot or bracket notation.

// standard
setSessionValues({
  foo: 'bar'
});

// Nested
setSessionValues({
  'foo.bar[0]': 'baz'
});

// multiple
setSessionValues({
  foo: 'bar',
  'bar[0]': 'baz'
});

localReducer

Handles storage of items in localStorage. This can be assigned to any key you'd like when using combineReducers, it is not prescriptive.

combineReducers({
  permanentCache: localReducer
});

sessionReducer

Handles storage of items in sessionStorage. This can be assigned to any key you'd like when using combineReducers, it is not prescriptive.

combineReducers({
  temporaryCache: sessionReducer
});

Development

Standard stuff, clone the repo and npm i to get the dependencies. npm scripts available:

  • build => builds the distributed JS with NODE_ENV=development and with sourcemaps
  • build:minified => builds the distributed JS with NODE_ENV=production and minified
  • clean => removes lib and dist folders
  • dev => runs the webpack dev server for the playground
  • lint => runs ESLint against files in the src folder
  • lint:fix => runs ESLint against files in the src folder and fixes any fixable issues discovered
  • prepublish => if in publish, runs prepublish:compile
  • prepublish:compile => runs the lint, test:coverage, clean, transpile, build, and build:minified scripts
  • test => run ava with NODE_ENV=test
  • test:coverage => run ava with nyc to calculate code coverage
  • test:watch => runs test but with persistent watcher
  • transpile => runs Babel against files in src to files in lib