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

@blitzbrowser/blitzbrowser

v1.1.7

Published

Deploying, scaling and managing headful browsers in docker.

Readme

📋 Table of Contents

✨ Features

  • Parallelism - Run multiple browsers concurrently.
  • Chrome DevTools Protocol - Connect directly from Puppeteer, Playwright and any CDP supported frameworks. No custom library needed.
  • User Data Storage - Save and reuse your browsing sessions easily with S3.
  • Proxy - Connect your browsers to any HTTP proxy.
  • Queueing - The CDP connections are queued while the browsers are starting.
  • No DevOps - Run your browsers without worrying about the infrastructure, zombie process or a script. The container manages everything for you.

🚀 Quick Start

Start in seconds with docker and then connect your code.

Docker

docker run -p=9999:9999 --shm-size=2g ghcr.io/blitzbrowser/blitzbrowser:latest
services:
  blitzbrowser:
    image: ghcr.io/blitzbrowser/blitzbrowser:latest
    ports:
      - "9999:9999"
    shm_size: "2gb"
    restart: always

Before using user data storage with BlitzBrowser. You need to create the bucket user-data in Rustfs http://localhost:9001.

services:
  blitzbrowser:
    image: ghcr.io/blitzbrowser/blitzbrowser:latest
    ports:
      - "9999:9999"
    environment:
      S3_ENDPOINT: http://s3:9000
      S3_ACCESS_KEY_ID: rustfsadmin
      S3_SECRET_ACCESS_KEY: rustfsadmin
      S3_USER_DATA_BUCKET: user-data
    shm_size: "2gb"
    restart: always
  s3:
    image: rustfs/rustfs
    ports:
      - "9000:9000"
      - "9001:9001"
    environment:
      RUSTFS_VOLUMES: /data
      RUSTFS_ADDRESS: :9000
      RUSTFS_ACCESS_KEY: rustfsadmin
      RUSTFS_SECRET_KEY: rustfsadmin
      RUSTFS_CONSOLE_ENABLE: true
    restart: always
    volumes:
      - s3_data:/data
  # RustFS volume permissions fixer service
  volume-permission-helper:
    image: alpine
    volumes:
      - s3_data:/data
    command: >
      sh -c "
        chown -R 10001:10001 /data &&
        echo 'Volume Permissions fixed' &&
        exit 0
      "
    restart: "no"
volumes:
  s3_data:

Connect your code

import puppeteer from 'puppeteer';

const browser = await puppeteer.connect({
    browserWSEndpoint: `ws://localhost:9999`
});

const context = await browser.createBrowserContext();
const page = await context.newPage();

// ...

await browser.close();
import { chromium } from 'playwright';

const browser = await chromium.connectOverCDP(`ws://localhost:9999`);

const context = await browser.newContext();
const page = await context.newPage();

// ...

await browser.close();

⚙️ Configuration

CDP Properties

When connecting to a browser over CDP. You can pass properties to customize your browser.

  • proxyUrl: The HTTP proxy to use to route all the HTTP requests of the browser. By default it use the public IP of the host.
  • timezone: The timezone to set the browser on. By default it will check the public IP used by the browser and use the timezone associated to it.
  • userDataId: The ID of the user data to use when browsing and to save after. If no user data id, the browsing session won't be saved. It is required to use S3 to store the user data.
  • userDataReadOnly: The ID of the user data to use when browsing. The user data won't be saved after the browser is closed.

You use them like this: ws://localhost:9999?proxyUrl=http://proxy.com&userDataId=123 when connecting to a browser.

Environment Variables

  • PORT: The HTTP port of the web server. The default port is 9999.
  • MAX_BROWSER_INSTANCES: The maximum number of browsers the instance can run concurrently. The default value is 99.
  • S3_ENDPOINT: The endpoint of the S3 server to use for storage.
  • S3_ACCESS_KEY_ID: Access key ID to connect to the S3 server.
  • S3_SECRET_ACCESS_KEY: Secret access key to connect to the S3 server.
  • S3_USER_DATA_BUCKET: The S3 bucket to store the user data.
  • TAGS: The tags used to identify the pool of browsers. No tags by default. The tags are in the following format a=1,b=2,c=3.

☁️ Cloud or 💻 self-hosted

The cloud and self-hosted versions offer the same features.

You should use the self-hosted version if you are looking to host on your own server or to test locally. It works perfectly if you are scaling vertically. 1 server to handle multiple browsers and the S3 storage for user data.

The cloud version allows you to focus on scaling your features while we handle all the infrastructure. You connect to our CDP endpoint and we will handle the scaling, the S3 storage and the proxy. No version management, no infrastructure deployment and priority support.

Our proxy is available as a standalone HTTP proxy. You don't need to use our cloud version to get access to our proxies. It works with the self-hosted version and it is really cheap!

❔Support

To get support, you can contact us on Discord or at [email protected].