Launch Week Day 5: Introducing Reachability for PHP.Learn More
Socket
Book a DemoSign in
Socket

@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

latest
Source
npmnpm
Version
1.0.1
Version published
Weekly downloads
136
109.23%
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

react hooks

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