🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

@analytics/cookie-utils

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@analytics/cookie-utils

Cookie helper functions

0.2.2
Source
npm
Version published
Weekly downloads
174K
-1.68%
Maintainers
1
Weekly downloads
 
Created
Source

Tiny cookie utilities library for analytics & whatever else 🌈

Exposes getCookie, setCookie, removeCookie, & hasCookieSupport functions.

This will work with analytics or as a standalone import in your code.

How to install

Install @analytics/cookie-utils from npm.

npm install @analytics/cookie-utils

API

Below is the api for @analytics/cookie-utils. These utilities are tree-shakable.

getCookie

Get a cookie value.

import { getCookie } from '@analytics/cookie-utils'

const value = getCookie('cookie-key')

setCookie

Set a cookie value.

import { setCookie } from '@analytics/cookie-utils'

/* simple set */
setCookie('test', 'a')

/* complex set - cookie(name, value, ttl, path, domain, secure) */
setCookie('test', 'a', 60*60*24, '/api', '*.example.com', true)

deleteCookie

Delete a cookie.

import { deleteCookie } from '@analytics/cookie-utils'

deleteCookie('cookie-key')

hasCookieSupport

Check if cookies are supported. Will verify browser will accept cookies

import { hasCookieSupport } from '@analytics/cookie-utils'

if (hasCookieSupport()) {
  // Use them 🍪
}

Keywords

analytics

FAQs

Package last updated on 03 Oct 2019

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