Socket
Socket
Sign inDemoInstall

@chainsafe/browser-storage-hooks

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@chainsafe/browser-storage-hooks

React hooks for local and session storage


Version published
Weekly downloads
45
increased by40.63%
Maintainers
1
Weekly downloads
 
Created
Source

Browser Storage Hooks

React hooks wrapper for local and session storage Browser API's.

How to use

npm i @chainsafe/browser-storage-hooks or yarn add @chainsafe/browser-storage-hooks

When ever local or session storage is required, import { useLocalStorage, useSessionStorage } from "@chainsafe/browser-storage-hooks"

The hooks expose a feature flag as well as safe getters and setters for both session and local storage:

  canUseSessionStorage: boolean;
  sessionStorageRemove: (key: string) => void;
  sessionStorageGet: (key: string) => string | null;
  sessionStorageSet: (key: string, value: string) => void;

Happy Building ♡

Keywords

FAQs

Package last updated on 15 Apr 2021

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc