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

freeman-browser

v1.0.2

Published

Stealth browser for AI agents. iPhone 15 Pro fingerprint. Drop-in Playwright replacement.

Readme

Freeman Browser — Web Stealth Browser for AI Agents

Stealth engine for your OpenClaw


Why your agent needs this

Regular Playwright gets blocked immediately by:

  • Cloudflare (bot score detection)
  • DataDome (fingerprint analysis)
  • PerimeterX (behavioral analysis)

Freeman Browser solves this by combining:

  1. Real device fingerprint — iPhone 15 Pro or Windows Chrome, complete with canvas, WebGL, fonts
  2. Freeman-like behavior — Bezier mouse curves, 60–220ms typing, natural scroll with jitter
  3. Full anti-detectionwebdriver=false, no automation flags

Quick Start

const { launchFreeman } = require('freeman-browser');

const { browser, page, humanType, humanClick, humanScroll, sleep } = await launchFreeman();

// Desktop Chrome (Windows fingerprint)
const { page: desktopPage } = await launchFreeman({ mobile: false });

await page.goto('https://example.com', { waitUntil: 'domcontentloaded' });
await humanScroll(page, 'down');
await humanType(page, 'input[type="email"]', '[email protected]');
await humanClick(page, 760, 400);
await browser.close();

Setup

As an OpenClaw Skill

clawhub install sbrin/freeman-browser

As a standalone NPM package

npm install freeman-browser playwright
npx playwright install chromium --with-deps

Configuration

You can configure the browser's fingerprint (locale, timezone, and geolocation) by creating a browser.json file in the root of your project:

{
  "locale": "en-US",
  "timezoneId": "America/New_York",
  "geolocation": {
    "latitude": 40.7128,
    "longitude": -74.006,
    "accuracy": 50
  }
}

(Alternatively, you can specify a custom config path via the BROWSER_CONFIG environment variable.)


How it compares

| Feature | Regular Playwright | Freeman Browser | |---------|-------------------|---------------| | Bot detection | Fails | Passes all | | Mouse movement | Instant teleport | Bezier curves | | Typing speed | Instant | 60–220ms/char | | Fingerprint | Detectable bot | iPhone 15 Pro | | Cloudflare | Blocked | Bypassed | | DataDome | Blocked | Bypassed |

Credits

Based on the human-browser by al1enjesus.