Gathering detailed insights and metrics for hashed-device-fingerprint-js
Gathering detailed insights and metrics for hashed-device-fingerprint-js
Gathering detailed insights and metrics for hashed-device-fingerprint-js
Gathering detailed insights and metrics for hashed-device-fingerprint-js
A lightweight JavaScript/TypeScript package that generates device-specific hashed fingerprints for devices in both browser and server environments.
npm install hashed-device-fingerprint-js
Typescript
Module System
Node Version
NPM Version
70.5
Supply Chain
98.8
Quality
91.6
Maintenance
100
Vulnerability
100
License
TypeScript (91.58%)
JavaScript (8.42%)
Total Downloads
995
Last Day
2
Last Week
53
Last Month
995
Last Year
995
8 Stars
26 Commits
1 Forks
1 Watching
4 Branches
1 Contributors
Minified
Minified + Gzipped
Latest Version
1.5.3
Package Id
hashed-device-fingerprint-js@1.5.3
Unpacked Size
24.77 kB
Size
7.56 kB
File Count
10
NPM Version
10.7.0
Node Version
22.2.0
Publised On
21 Nov 2024
Cumulative downloads
Total Downloads
Last day
-86.7%
2
Compared to previous day
Last week
231.3%
53
Compared to previous week
Last month
0%
995
Compared to previous month
Last year
0%
995
Compared to previous year
4
+-------------------+------------------------+
| https://yoursite.com |
+-------------------+------------------------+
| | |
+-----------------+-----------------+-----------------+
| (DEVICE A) | (DEVICE B) | (DEVICE C) |
| device-specific | device-specific | device-specific |
| fingerprint | fingerprint | fingerprint |
+-----------------+-----------------+-----------------+
A lightweight JavaScript/TypeScript package that generates device-specific hashed fingerprints for devices in both browser and server environments. The library allows customization of what data is included in the fingerprint, with options for saving the hash in cookies, passing headers for server-side use, and providing the user's IP directly.
hashed-device-fingerprint-js
generates fingerprints using device data like [screenResolution, platform, concurrency, userIP]
by default, with userAgent
and language
disabled. You can add customData (e.g., userID)
to make the array [screenResolution, platform, concurrency, userIP, customData]
(e.g. [1920x1080, Windows, 4 cores, 203.0.113.45, user-12345]
), ensures a consistent generated same hash across browsers on the same device.
Win32
or Linux
)navigator
and screen
properties.require
(CommonJS) and import
(ES Modules).Install the package using npm:
npm install hashed-device-fingerprint-js
Install the package using yarn:
yarn add hashed-device-fingerprint-js
By default, all options are enabled (userAgent
and language
disabled). The library generates a fingerprint hash using all available device data and automatically fetches the user's IP address.
1import { generateHashedFingerprint } from 'hashed-device-fingerprint-js'; 2 3generateHashedFingerprint() 4 .then(hash => console.log('Fingerprint Hash:', hash)) 5 .catch(error => console.error('Error:', error));
In a Server environment, pass HTTP headers to generate a fingerprint. Use the environment option to specify the server-side environment.
1const { generateHashedFingerprint } = require('hashed-device-fingerprint-js'); 2// import { generateHashedFingerprint } from 'hashed-device-fingerprint-js'; 3 4// Example HTTP headers 5const headers = { 6 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)', 7 'accept-language': 'en-US,en;q=0.9', 8 'x-forwarded-for': '203.0.113.45', 9}; 10 11generateHashedFingerprint({ 12 environment: 'server', 13 headers, 14}) 15 .then(hash => console.log('Fingerprint Hash:', hash)) 16 .catch(error => console.error('Error:', error));
Customize the behavior by passing an options object:
1generateHashedFingerprint({ 2 useUserAgent: false, // Exclude the user agent (default: true) 3 useLanguage: false, // Exclude the browser language 4 useScreenResolution: true, // Include screen resolution (default: true) 5 usePlatform: true, // Include platform information (default: true) 6 useConcurrency: true, // Include logical processors (default: true) 7 useIP: true, // Fetch and include the user's IP (default: true) 8 userIP: '203.0.113.45', // Provide IP manually (overrides API fetch) 9 saveToCookie: false, // Do not save the hash in a cookie (default: true) 10 cookieExpiryDays: 10 // Cookie expiry in days (default: 7) 11}) 12 .then(hash => console.log('Custom Fingerprint Hash:', hash)) 13 .catch(error => console.error('Error:', error));
The IP address is included in the fingerprint based on these rules:
userIP
is provided, it is used directly.userIP
is null and useIP is true, the IP is fetched using an external API (https://api64.ipify.org).1generateHashedFingerprint({ saveToCookie: true }) 2 .then(hash => console.log('Fingerprint saved in cookie:', hash)) 3 .catch(error => console.error('Error:', error));
1generateHashedFingerprint({ useIP: false }) 2 .then(hash => console.log('Fingerprint without IP:', hash)) 3 .catch(error => console.error('Error:', error));
1generateHashedFingerprint({ userIP: '203.0.113.45' }) 2 .then(hash => console.log('Fingerprint with manual IP:', hash)) 3 .catch(error => console.error('Error:', error));
1const { generateHashedFingerprint } = require('hashed-device-fingerprint-js'); 2 3// Basic route 4app.get('/hash', async (req, res) => { 5 // Define headers for fingerprint generation 6 const headers = { 7 'user-agent': req.headers['user-agent'] || 'Unknown', 8 'accept-language': req.headers['accept-language'] || 'Unknown', 9 'x-forwarded-for': req.headers['x-forwarded-for'] || req.connection.remoteAddress || 'Unknown', 10 }; 11 12 try { 13 // Generate the fingerprint hash 14 const hash = await generateHashedFingerprint({ 15 environment: 'server', 16 headers, 17 }); 18 19 // Log the hash 20 console.log('Generated Hash:', hash); 21 22 // Send the hash as the response 23 res.send({ hash }); 24 } catch (error) { 25 // Handle errors 26 console.error('Error generating fingerprint:', error); 27 res.status(500).send({ error: 'Failed to generate fingerprint' }); 28 } 29});
The package includes TypeScript type definitions for all options and methods. Here’s a quick example:
1import { generateHashedFingerprint, FingerprintOptions } from 'hashed-device-fingerprint-js'; 2 3const options: Partial<FingerprintOptions> = { 4 saveToCookie: false, 5 useUserAgent: true, 6 useIP: true 7}; 8 9generateHashedFingerprint(options) 10 .then(hash => console.log('Typed Fingerprint Hash:', hash)) 11 .catch(error => console.error('Error:', error));
Errors are thrown as JavaScript Error objects. Use a try-catch block or .catch() to handle them safely:
1generateHashedFingerprint() 2 .then(hash => console.log('Fingerprint Hash:', hash)) 3 .catch(error => { 4 if (error instanceof Error) { 5 console.error('Error:', error.message); 6 } else { 7 console.error('Unknown Error:', error); 8 } 9 });
saveToCookie
boolean
true
cookieExpiryDays
number
7
useUserAgent
boolean
false
useLanguage
boolean
false
useScreenResolution
boolean
true
usePlatform
boolean
true
useConcurrency
boolean
true
useIP
boolean
true
userIP
string
null
headers
Record<string, string[]>
{}
environment
'browser' | 'server'
Auto-detected
'browser'
or 'server'
).customData
string
null
UUID
or user ID
).This package is licensed under the MIT License.
git checkout -b feature-name
.git commit -m 'Add feature'
.git push origin feature-name
.If you encounter any issues or have questions, feel free to open an issue on Repo Issues.
Happy coding! 🚀
No vulnerabilities found.
No security vulnerabilities found.