
Product
Rubygems Ecosystem Support Now Generally Available
Socket's Rubygems ecosystem support is moving from beta to GA, featuring enhanced security scanning to detect supply chain threats beyond traditional CVEs in your Ruby dependencies.
anonymous-id
Advanced tools
Supply Chain Security
Vulnerability
Quality
Maintenance
License
A tiny utility for working with anonymous ids
on the server and in the browser.
Install with npm:
npm install --save anonymous-id
Or with yarn:
yarn add anonymous-id
import anonymousId from 'anonymous-id'
anonymousId() // generate or pull id from cookie/localStorage
anonymousId('exampleId') // call the function with string or number to set as id, otherwise pass in options
import { get, set } from 'anonymous-id'
set({ key: 'my_anon_id' }) // ajs-C1E42A94-FCE2-4851-87DD-695F576C5368 -> cookie or localStorage
get({ key: 'my_anon_id' }) // cookie or localStorage -> ajs-C1E42A94-FCE2-4851-87DD-695F576C5368
These are the base options that can be passed in to both get and set functions:
anonymousId({
debug: true, // log operations to stdout
preset: String, // prefix/generateId/stores to use
cookie: String, // cookie string to use (browser default is document.cookie)
localStorage: Object // Storage object to use (browser default is window.localStorage)
})
For setting anonymous ids, you can specify an id
field which will pass the options to setAnonymousId()
. If you don't set the id
option, then getAnonymousId()
will be called with the options:
const id = await promptEmailFromUser()
anonymousId({ id })
And for getting anonymous ids, you can pass control if the preset tries to persist data:
console.log(document.cookie) // 'a=true'
const { cookie } = anonymousId({ persist: false })
console.log(document.cookie) // 'a=true'
console.log(cookie) // 'a=true; ajs_anonymous_id=ajs-B31C9E91-D741-4146-913B-0E80199648D0'
All contributions are super welcome! anonymous-id
is MIT-licensed.
FAQs
get and set anonymous identifiers
The npm package anonymous-id receives a total of 0 weekly downloads. As such, anonymous-id popularity was classified as not popular.
We found that anonymous-id 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.
Product
Socket's Rubygems ecosystem support is moving from beta to GA, featuring enhanced security scanning to detect supply chain threats beyond traditional CVEs in your Ruby dependencies.
Research
The Socket Research Team investigates a malicious npm package that appears to be an Advcash integration but triggers a reverse shell during payment success, targeting servers handling transactions.
Security Fundamentals
The Socket Threat Research Team uncovers how threat actors weaponize shell techniques across npm, PyPI, and Go ecosystems to maintain persistence and exfiltrate data.