npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

fingerprint-oss

v0.9.0

Published

A comprehensive JavaScript library for device fingerprinting and system information collection. Provides robust, deterministic fingerprinting for web applications with privacy-conscious design.

Readme

Fingerprint OSS

License: GPL-3.0 npm version GitHub stars npm downloads GitHub issues PRs Welcome

A free and open source fingerprinting service unlike FingerprintJS.

⚠️ Important Notice

This library is released under the LGPL-3.0 license and includes ethical guidelines for usage. Please read our Ethical Contribution Notice before using this library. We are committed to:

  • Transparent data collection
  • User privacy protection
  • Ethical usage of fingerprinting technology
  • Compliance with privacy regulations

About

Fingerprint OSS is a fork of user-info-logger, a simple client-side fingerprinting library that logs user information. Unlike commercial alternatives that are "source available" but not truly open, Fingerprint OSS is released under the LGPL-3.0 license, making it fully open source and free to use.

Demo

Features

  • Lightweight browser fingerprinting
  • Easy integration with any web application
  • 100% client-side operation (except the GeoLocation API)
  • Comprehensive user data collection
  • VPN detection
  • Incognito mode detection
  • AdBlocker detection
  • Bot detection
  • GDPR compliance support

Installation

Install via npm:

npm install fingerprint-oss@latest

Usage

Basic usage:

import userInfo from 'fingerprint-oss';
const data = await userInfo();

Configuration for GDPR Compliance

const config = {
    transparency: true,
    message: 'Custom message about data collection'
};

const data = await userInfo(config);

Configuration options:

  • transparency: If true, logs a message to the console about data collection
  • message: Custom message to be logged to the console

Documentation

Data Collected

Fingerprint OSS can collect information about:

  • Browser type and version
  • Operating system
  • Screen resolution
  • Installed plugins
  • Language settings
  • Time zone
  • Hardware information
  • Canvas fingerprinting
  • WebGL capabilities
  • VPN status
  • Incognito mode status
  • AdBlocker status
  • Bot detection
  • And more...

For a complete list of collected data and their structure, please refer to our API Documentation.

Project Status

This project is currently under active development. See the changelog for the latest updates.

License

LGPLv3 - See LICENSE file for details.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request or open issues on our GitHub repository. Before contributing, please read our Ethical Contribution Notice to ensure your contributions align with our ethical guidelines.

Acknowledgements

This project is a fork of user-info-logger, with enhancements and improvements for better performance and features.