Socket
Socket
Sign inDemoInstall

storage-factory

Package Overview
Dependencies
0
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    storage-factory

Because using localStorage directly is a bad idea


Version published
Weekly downloads
24K
increased by10.23%
Maintainers
1
Install size
4.39 kB
Created
Weekly downloads
 

Changelog

Source

0.2.1

  • Update development dependencies

Readme

Source

storage-factory

CircleCI

This library is a tiny (414B) wrapper for localStorage and sessionStorage because using Storage directly is a bad idea. Here's the blogpost that explains why is that.

Warning: object access (e.g. localStorage.foo) is not yet implemented 💥

Usage

Somewhere in your project

// storage.js
import { storageFactory } from "storage-factory";

export const local = storageFactory(() => localStorage);
export const session = storageFactory(() => sessionStorage);

When you need to use storage

import * as storage from "./storage";

function login(token) {
  storage.local.setItem("token", token);
  // do your other login things
}

Example

Run the example using parcel

npx parcel example/index.html

Contribute

Do you want to contribute? Awesome! Please, create an issue first and tell me about it.

FAQs

Last updated on 17 Jun 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc