Gathering detailed insights and metrics for @fingerprintjs/fingerprintjs-pro-react
Gathering detailed insights and metrics for @fingerprintjs/fingerprintjs-pro-react
Gathering detailed insights and metrics for @fingerprintjs/fingerprintjs-pro-react
Gathering detailed insights and metrics for @fingerprintjs/fingerprintjs-pro-react
@fingerprintjs/fingerprintjs-pro-react-native
Official React Native client for Fingerprint PRO. Best identification solution for React Native.
@fingerprintjs/fingerprintjs-pro
Fingerprint Pro JavaScript agent
@fingerprintjs/fingerprintjs
Browser fingerprinting library with the highest accuracy and stability
@fingerprintjs/fingerprintjs-pro-spa
FingerprintJS Pro JavaScript agent for Single-Page Applications (SPA)
Fingerprint Pro Wrapper for React Single Page Applications (SPA)
npm install @fingerprintjs/fingerprintjs-pro-react
86.7
Supply Chain
100
Quality
80.8
Maintenance
100
Vulnerability
99.1
License
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
53 Stars
378 Commits
9 Forks
8 Watching
5 Branches
18 Contributors
Updated on 22 Nov 2024
TypeScript (86.15%)
JavaScript (11.65%)
Shell (2.2%)
Cumulative downloads
Total Downloads
Last day
-16.6%
2,855
Compared to previous day
Last week
-5.8%
16,914
Compared to previous week
Last month
27.7%
78,371
Compared to previous month
Last year
22.4%
566,449
Compared to previous year
2
39
Fingerprint is a device intelligence platform offering 99.5% accurate visitor identification. Fingerprint Pro React SDK is an easy way to integrate Fingerprint Pro into your React application. It's also compatible with Next.js and Preact. See application demos in the examples folder.
[!NOTE] This package assumes you have a Fingerprint Pro subscription or trial, it is not compatible with the source-available FingerprintJS. See our documentation to learn more about the differences between Fingerprint Pro and FingerprintJS.
Using npm:
1npm install @fingerprintjs/fingerprintjs-pro-react
Using yarn:
1yarn add @fingerprintjs/fingerprintjs-pro-react
Using pnpm:
1pnpm add @fingerprintjs/fingerprintjs-pro-react
In order to identify visitors, you'll need a Fingerprint Pro account (you can sign up for free). To get your API key and get started, see the Fingerprint Pro Quick Start Guide.
<FpjsProvider>
.apiKey
to your Fingerprint Public API Key.region
if you have chosen a non-global region during registration.endpoint
and scriptUrlPattern
if you are using one of our proxy integrations to increase accuracy and effectiveness of visitor identification.1// src/index.js 2import React from 'react' 3import ReactDOM from 'react-dom/client' 4import { 5 FpjsProvider, 6 FingerprintJSPro, 7} from '@fingerprintjs/fingerprintjs-pro-react' 8import App from './App' 9 10const root = ReactDOM.createRoot(document.getElementById('app')) 11 12root.render( 13 <FpjsProvider 14 loadOptions={{ 15 apiKey: 'your-public-api-key', 16 // region: 'eu', 17 endpoint: [ 18 // 'metrics.yourwebsite.com', 19 FingerprintJSPro.defaultEndpoint, 20 ], 21 scriptUrlPattern: [ 22 // 'https://metrics.yourwebsite.com/web/v<version>/<apiKey>/loader_v<loaderVersion>.js', 23 FingerprintJSPro.defaultScriptUrlPattern, 24 ], 25 }} 26 > 27 <App /> 28 </FpjsProvider> 29)
useVisitorData()
hook in your components to identify visitors1// src/App.js 2import React from 'react' 3import { useVisitorData } from '@fingerprintjs/fingerprintjs-pro-react' 4 5function App() { 6 const { isLoading, error, data } = useVisitorData() 7 8 if (isLoading) { 9 return <div>Loading...</div> 10 } 11 if (error) { 12 return <div>An error occured: {error.message}</div> 13 } 14 15 if (data) { 16 // Perform some logic based on the visitor data 17 return ( 18 <div> 19 Welcome {data.visitorFound ? 'back' : ''}, {data.visitorId}! 20 </div> 21 ) 22 } else { 23 return null 24 } 25} 26 27export default App
The useVisitorData
hook also returns a getData
method you can use to make an API call on command.
{ ignoreCache: true }
to useVisitorData
to force a fresh identification request.{ immediate: false }
to useVisitorData
to disable automatic visitor identification on render.1// src/App.js 2import React, { useState } from 'react' 3import { useVisitorData } from '@fingerprintjs/fingerprintjs-pro-react' 4 5function App() { 6 const { isLoading, error, getData } = useVisitorData( 7 { ignoreCache: true }, 8 { immediate: false } 9 ) 10 const [email, setEmail] = useState('') 11 12 if (isLoading) { 13 return <div>Loading...</div> 14 } 15 if (error) { 16 return <div>An error occurred: {error.message}</div> 17 } 18 19 return ( 20 <div> 21 <form 22 onSubmit={(e) => { 23 e.preventDefault() 24 getData() 25 .then((data) => { 26 // Do something with the visitor data, for example, 27 // append visitor data to the form data to send to your server 28 console.log(data) 29 }) 30 .catch((error) => { 31 // Handle error 32 }) 33 }} 34 > 35 <label htmlFor='email'>Email:</label> 36 <input 37 type='email' 38 value={email} 39 onChange={(e) => setEmail(e.currentTarget.value)} 40 /> 41 <button type='submit'>Subscribe</button> 42 </form> 43 </div> 44 ) 45} 46 47export default App
The visitorId
provided by Fingerprint Identification is especially useful when combined with information you already know about your users, for example, account IDs, order IDs, etc. To learn more about various applications of the linkedId
and tag
, see Linking and tagging information.
Associate the visitor ID with your data using the linkedId
or tag
parameter of the options object passed into the useVisitorData()
hook or the getData
function:
1// ...
2function App() {
3 const { isLoading, error, getData } = useVisitorData({
4 linkedId: 'user_1234',
5 tag: {
6 userAction: 'login',
7 analyticsId: 'UA-5555-1111-1',
8 },
9 })
10}
11// ...
Fingerprint Pro usage is billed per API call. To avoid unnecessary API calls, it is a good practice to cache identification results. By default, the SDK uses sessionStorage
to cache results.
cacheLocation
prop on <FpjsProvider>
to instead store results in memory
or localStorage
. Use none
to disable caching completely.cache
prop on <FpjsProvider>
to use your custom cache implementation instead. For more details, see Creating a custom cache
in the Fingerprint Pro SPA repository (a lower-level Fingerprint library used by this SDK).{ignoreCache: true}
to the getData()
function to ignore cached results for that specific API call.[!NOTE] If you use data from
extendedResult
, pay additional attention to your caching strategy. Some fields, for example,ip
orlastSeenAt
, might change over time for the same visitor. UsegetData({ ignoreCache: true })
to fetch the latest identification results.
The getData
function throws errors directly from the JS Agent without changing them. See JS Agent error handling for more details.
See the full generated API reference.
To ask questions or provide feedback, use Issues. If you need private support, please email us at oss-support@fingerprint.com
. If you'd like to have a similar React wrapper for the open-source FingerprintJS, consider creating an issue in the main FingerprintJS repository.
This project is licensed under the MIT license. See the LICENSE file for more info.
No vulnerabilities found.
No security vulnerabilities found.