Socket
Socket
Sign inDemoInstall

@analytics/storage-utils

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@analytics/storage-utils

Storage utilities for saving values in browser


Version published
Weekly downloads
154K
decreased by-2.96%
Maintainers
1
Weekly downloads
 
Created
Source

Analytics Storage Utils

Stand alone storage utilities used in analytics

By default, @analytics/storage-utils will persist values in browser in this order:

  1. localStorage
  2. If no localStorage, use cookies
  3. If no cookies, use global window

If you want to specify which storage mechanism to use, use the options parameter.

setItem

Set a value.

import { setItem } from '@analytics/storage-utils'

/** 
* Basic usage 
*/

/* Save value to `localStorage` or `cookies` or `global` */
setItem('key', 'value')
// returns { value: "value", oldValue: "old", location: "localStorage" }

/** Setting values to specific location */

/* Set value to specifically localStorage */
setItem('key', 'otherValue', 'localStorage')
// setItem('key', 'otherValue', { storage: 'localStorage' })
// returns { value: "otherValue", oldValue: "value", location: "localStorage" }

/* Set value to specifically cookie */
setItem('keyTwo', 'cookieVal', 'cookie')
// setItem('keyTwo', 'cookieVal', { storage: 'cookie' })
// returns { value: "cookieVal", oldValue: "null", location: "cookie" }

/* Set value from specifically the global window (or global this in node.js) */
setItem('keyThree', 'xyz', 'global')
// setItem('keyThree', 'xyz', { storage: 'global' })
// returns { value: "cookieVal", oldValue: "null", location: "cookie" }

getItem

Get a value.

import { getItem } from '@analytics/storage-utils'

/* Basic usage */

/* Lookup value from `localStorage` or `cookies` or `global` */
const value = getItem('key')

/** 
 * Getting values to specific location 
 */

// Get value to specifically localStorage
const getLSValue = getItem('key', 'localStorage')

/* Get value to specifically cookie */
const getLSValue = getItem('key', 'cookie')
// getItem('key', { storage: 'cookie' })

/* Get value from specifically the global window (or global this in node.js) */
const getLSValue = getItem('key', 'global')
// getItem('key', { storage: 'global' })

/* Get value from all locations */
const valueObj = getItem('otherKey', '*')
// returns { cookie: undefined, localStorage: "hahaha", global: null }

removeItem

Remote a value.

import { removeItem } from '@analytics/storage-utils'

/* Basic usage */

// Will try remove value from `localStorage` -> `cookies` -> `global`
removeItem('key')

/** Removing values to specific location */

/* Remove value to specifically localStorage */
removeItem('key', 'localStorage')
// removeItem('key', { storage: 'localStorage' })

/* Remove value to specifically cookie */
removeItem('keyTwo', 'cookie')
// removeItem('keyTwo', { storage: 'cookie' })

/* Remove value to specifically global */
removeItem('keyThree', 'global')
// removeItem('keyThree', { storage: 'global' })

Keywords

FAQs

Package last updated on 11 Mar 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