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 🙏

© 2026 – Pkg Stats / Ryan Hefner

librecap

v0.3.5

Published

An open-source CAPTCHA Box alternative designed with privacy and data protection in mind.

Readme

🚀 Quick Start

Add the script tag to your HTML file:

<script
	src="https://cdn.jsdelivr.net/npm/[email protected]/dist/librecap-min.js"
	integrity="sha512-8ECHqV3vio1fYIU1gknMEEGpY/uvkb2qiy/f3j4nP55HZ0LfIWqRFIM52B0IpGMy84ui36jQm/vXiK64IldNfQ=="
	crossorigin="anonymous"
></script>

Add a CAPTCHA box to your website by inserting this div wherever you need verification:

<div class="librecap"></div>

That's it! The default configuration works out of the box using your own server implementation that can be found here.

📸 Screenshots

LibreCap Widget Light Theme LibreCap Widget Dark Theme

LibreCap Image Popup Light Theme LibreCap Image Popup Dark Theme

LibreCap Audio Popup Light Theme LibreCap Audio Popup Dark Theme

📋 Table of Contents

🌟 Overview

LibreCap offers a privacy-friendly CAPTCHA solution that respects your users' data. Unlike other CAPTCHA services, LibreCap operates without tracking, cookies, or analytics, making it an excellent choice for websites that prioritize user privacy.

✨ Features

  • Privacy-First Design: No tracking, no cookies, no analytics, no third-party services
  • Adaptive Theming: Dark, light, and automatic theme support to match your website
  • Internationalization: Translations for 107 languages with automatic language detection
  • Mobile-Friendly: Works seamlessly on all devices, including mobile
  • Customizable: Easily style with CSS to match your website's design
  • Dual Verification Methods: Supports both Proof of Work (PoW) and traditional CAPTCHA challenges

📦 Installation

Run the demo server (Recommended for testing)

git clone https://github.com/librecap/librecap.git
cd librecap
npm install
npm run demo

Using CDN (Recommended)

Add the script tag to your HTML file:

<script
	src="https://cdn.jsdelivr.net/npm/[email protected]/dist/librecap-min.js"
	integrity="sha512-8ECHqV3vio1fYIU1gknMEEGpY/uvkb2qiy/f3j4nP55HZ0LfIWqRFIM52B0IpGMy84ui36jQm/vXiK64IldNfQ=="
	crossorigin="anonymous"
></script>

Add a CAPTCHA box to your website by inserting this div wherever you need verification:

<div class="librecap"></div>

Using npm

npm install librecap

Then import it in your project:

import 'librecap'

⚙️ Advanced Configuration

LibreCap can be customized by adding data attributes to your div:

<div class="librecap" data-theme="dark" data-language="en"></div>

Available configuration options:

  • data-theme: Set to "light", "dark", or "auto" (default)
  • data-language: CURRENTLY ONLY FOR AUDIO CHALLENGE GENERATION; Set a specific language code after ISO 639-1 or "auto" (default)
  • data-sitekey: Set your LibreCap site key when using a third party gateway server (optional, only when using a third party gateway server)
  • data-endpoint: Set the URL of your LibreCap endpoint, this could be an gateway server or your own server address (default: https://librecap.tn3w.dev/librecap/v1 when an site key is provided, otherwise /librecap/v1)
  • data-brand-title: Set the title of the brand (default: "LibreCap")
  • data-brand-url: Set the URL of the brand (default: "https://github.com/librecap/librecap")
  • data-brand-logo: Set the logo URL of the brand (default: base64 encoded url representation of LibreCap logo)
  • data-brand-description: Set the description of the brand (default: "LibreCap is an open-source CAPTCHA alternative designed with privacy and data protection in mind.")
  • data-brand-github: Set the GitHub URL of the brand (default: "https://github.com/librecap/librecap")
  • data-brand-terms: Set the terms URL of the brand (default: "https://github.com/librecap/librecap/blob/main/TERMS.md")
  • data-brand-privacy: Set the privacy URL of the brand (default: "https://github.com/librecap/librecap/blob/main/PRIVACY.md")

💻 Development

Clone the repository:

git clone https://github.com/librecap/librecap.git
cd librecap

Install the dependencies:

npm install

Build the project:

npm run build

Start the demo server:

Install express and cors before running the demo server.

npm install express cors
npm run demo

👥 Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

  1. Fork the project
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

📄 License

Copyright 2025 LibreCap Contributors

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.