Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More

@stltio/stealth

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@stltio/stealth

Device fingerprinting

  • 0.1.4
  • npm
  • Socket score

Version published
Weekly downloads
50
increased by150%
Maintainers
1
Weekly downloads
 
Created

Stlt - Stealth

Device fingerprinting

(work in progress)

How to use

import stealth from '@stltio/stealth'
const result = await stealth()
const {
  local: {},
  remote: {},
  id: 'abc...xyz',
  ms: 491
} = result

Use in ReactJs

import stealth from '@stltio/stealth'

const [data, setData] = useState({ local: {}, remote: {}, id: '', ms: 0 })

useEffect(() => {
  const init = async () => {
    const s = await stealth()
    setData(s)
  }
  init()
}, [])

FAQs

Package last updated on 27 Apr 2024

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