fraud-watch-browser-fingerprint
v1.0.5
Published
[![npm version](https://badge.fury.io/js/fraud-watch-browser-fingerprint.svg)](https://badge.fury.io/js/fraud-watch-browser-fingerprint)
Downloads
17
Readme
fraud-watch-browser-fingerprint
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
}
```