Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

@webcored/react-local-storage

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@webcored/react-local-storage

A stateful react hook for browser storage

beta
Source
npmnpm
Version
1.0.0-beta.0
Version published
Maintainers
1
Created
Source

React local storage

A stateful react hook for browser storage.

build

Why?

  • Configurable
  • Defaults support
  • Versions & Migrations

Usage

component.jsx

const [user, userStorage] = useLocalStorage('user');

....

userStorage.update(...user, { name: 'new name' });
typescript

const [user, userStorage] = useLocalStorage<User>('user');
  
....

userStorage.update(...user, { name: 'new name' });

sample app

javascriptEdit react-local-storage
typescript

typescriptEdit react-local-storage

Configurations

app.js

import React from 'react';
import { user } from './storages/user';

import { localStorageConfig } from "react-local-storage/config";

localStorageConfig({
  namespace: 'app',
  delimiter: '/'
  react: React
  storages: {
    user
  }
})

available configuration options

configdefaultoptionaldescription
namespacenulltruenamespace your storage keys to
avoid conflicts especially in the case micro-frontends.
delimiter/truedelimiter between the namespace and keys,
example if namespace is app then key of user will be app/user
reactnullfalsereact-local-storage uses useState hook internally which will be
abstracted from the given react instance.
storagewindow.localStoragetruechoose between local or session storage
storagesnulltruestorage keys config & definition object

Key configurations

Each and every key can have its own configuration

Defaults

Configure default values to the localstorage key

const user = {
  defaults: {
    name: 'Guest',
    email: 'guest@email.com'
  }
}
typescript

import { ReactLocalStorage } from "react-local-storage";

const user = ReactLocalStorage<User> {
  defaults: {
    name: 'Guest',
    email: 'guest@email.com'
  }
}

Versions & Migrations

If there is a schema change in the local storage or in the default value, the storage can be simply migrated to the latest version by incrementing the version of a key. It will trigger the migrationcallback when there is a diff with version.

const user = {
  defaults: {
    name: 'Guest',
    email: 'guest@email.com',
    avatar: 'example.com/guest.png'
  },
  version: 2,
  migration: (currentValue, defaultValue) {
    return Object.assign({}, ...currentValue, ...defaultValue);
  }
}
typescript

import { ReactLocalStorage } from "react-local-storage";

const user = ReactLocalStorage<User> {
  defaults: {
    name: 'Guest',
    email: 'guest@email.com',
    avatar: 'example.com/guest.png'
  },
  version: 2,
  migration: (currentValue, defaultValue) {
    return Object.assign({}, ...currentValue, ...defaultValue);
  }
}

Keywords

react-local-storage

FAQs

Package last updated on 28 Dec 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