Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@analytics/cookie-utils
Advanced tools
A tiny cookie utility library with fallbacks in 472 bytes
.
This module will automatically fail back to global window storage if cookies
are not available.
Exposes hasCookies
, getCookie
, setCookie
, & removeCookie
functions.
Install @analytics/cookie-utils
from npm.
npm install @analytics/cookie-utils
Below is the api for @analytics/cookie-utils
. These utilities are tree-shakable.
hasCookies
Check if cookies are supported. Will verify browser will accept cookies
import { hasCookies } from '@analytics/cookie-utils'
if (hasCookies()) {
// Use them 🍪
}
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)
removeCookie
Remove a cookie.
import { removeCookie } from '@analytics/cookie-utils'
removeCookie('cookie-key')
FAQs
Tiny cookie utility library
The npm package @analytics/cookie-utils receives a total of 115,628 weekly downloads. As such, @analytics/cookie-utils popularity was classified as popular.
We found that @analytics/cookie-utils demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.