JSPM

fraud-watch-browser-fingerprint

1.0.5
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 8
  • Score
    100M100P100Q39714F
  • License MIT

Package Exports

  • fraud-watch-browser-fingerprint

Readme

fraud-watch-browser-fingerprint

npm version

Welcome to fraud-watch-browser-fingerprint, a powerful JavaScript SDK designed to fetch detailed browser information and generate browser fingerprints with ease.

Table of Contents

Installation

import { load } from 'browser-sdk-info';


load().then(data => {
  console.log(data);
}).catch(err=>{});  // Handle any errors that occur during the load process

TypeScript Example(tsconfig.json change)

```json
{
  "compilerOptions": {
    "esModuleInterop": true,
    "allowSyntheticDefaultImports": true,
    "paths": {
      "browser-sdk-info": ["node_modules/browser-sdk-info/dist/index.d.ts"] //add in tsconfig.json file  for fraud-watch-browser-fingerprint
    }
  },
  "include": ["src/**/*.ts", "node_modules/browser-sdk-info/dist/index.d.ts"] //add in tsconfig.json file  for fraud-watch-browser-fingerprint
}
```