FingerprintJS Pro Svelte is an easy-to-use Svelte library for FingerprintJS Pro that also
works with svelte-kit.
Example apps can be found in the examples folder.
This package works with FingerprintJS Pro, it is not compatible with open-source FingerprintJS. You can learn more about
the difference between FingerprintJS Pro and open-source FingerprintJS in
the official documentation.
Wrap your application (or component) in FpjsProvider. You can specify multiple configuration options.
Set a region if you have chosen a non-global region during registration. Please refer to
the Regions page.
Use the useVisitorData function in your svelte components to perform visitor identification and get the data.
<script>
import { useVisitorData } from '@fingerprintjs/fingerprintjs-pro-svelte';
// Set to true fo fetch data when component is mounted
export let immediate = false;
const { getData, data, isLoading, error } = useVisitorData({ extendedResult: true }, { immediate });
$: {
if ($data) {
// Do something with visitorData here
}
}
</script>
// VisitorData.svelte
<div>
<button id="get_data" on:click={() => getData()}> Get data</button>
{#if $isLoading}
<div id="loading">Loading...</div>
{/if}
{#if $error}
<div id="error">Error occurred: {$error.message}</div>
{/if}
{#if $data}
<div>
<!--visitorData is available here!-->
</div>
{/if}
</div>
See the full code in example apps located in examples folder.
Caching strategy
:warning: WARNING If you use data from extendedResult, please pay additional attention to caching strategy.
FingerprintJS Pro uses API calls as the basis for billing.
Our best practices strongly recommend using cache to
optimise API calls rate. The Library uses the SessionStorage cache strategy by default.
Some fields from the extendedResult (e.g ip
or lastSeenAt) might change for the same visitor. If you need exact current data, it is recommended to
pass ignoreCache=true inside getData function.
The npm package @fingerprintjs/fingerprintjs-pro-svelte receives a total of 398 weekly downloads. As such, @fingerprintjs/fingerprintjs-pro-svelte popularity was classified as not popular.
We found that @fingerprintjs/fingerprintjs-pro-svelte demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago.It has 0 open source maintainers collaborating on the project.
Package last updated on 26 Jul 2022
Did you know?
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.
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."