1.0.0 • Published 9 months ago

fingerprint-watch v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

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
}
```