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

wrc-ts

v0.2.0

Published

Official SDK for WebRobot Cloud — undetected stealth browsers in the cloud. Rent real Chromium sessions with unique fingerprints, built-in proxies, captcha solving, human-like input and live video — scale web scraping and automation without running a sing

Readme

wrc-ts — WebRobot Cloud SDK for TypeScript

Official TypeScript SDK for WebRobot Cloud: real Chromium browsers in the cloud, driven over gRPC. Rent an isolated browser session in seconds, automate it with human-like input, intercept network traffic, solve captchas, and watch a live video stream of everything your script does.

Features

  • Real browser sessions as a service — full Chromium in the cloud with pages, frames, cookies, storage and network state. No local binary.
  • Parallel isolated contexts — each task gets its own session, fingerprint and lifecycle; large queues never share browser state. Sessions are browser contexts, not VMs or processes, so they spin up in under 50 ms and fan out to thousands in parallel.
  • Fingerprint & proxy handling — pinnable server-side fingerprints, native Chrome control without CDP/Playwright/Puppeteer leaks, bring your own proxy or let WRC allocate one.
  • Native engine-level control — automation runs natively inside Chromium itself, not from outside over the DevTools protocol. Nothing is injected, no Runtime.enable, no DevTools handshake — page JS can't observe it. Waits run fully async with no polling loop, and built-in steady-time checks only report an element once it's stable in the DOM.
  • One flat frame tree — main document, same-origin iframes and cross-origin OOPIFs are all just a frameId in one tree, no flattened sessions or per-frame execution-context juggling. wait/click act across all frames or a single iframe, and wait returns the frameId that matched.
  • Human-like interaction — mouse paths use WRC's own movement algorithm instead of instant synthetic jumps.
  • WebRTC live video stream — watch and control the rented browser live from the WRC web interface; mouse and keyboard go back over data channels.
  • Captcha support, no third-party solvers — passive anti-bot checks are handled automatically; interactive challenges are solved with solveCaptcha by WRC's own AI solver, which learns the known challenge types — puzzle, OCR, slide, hold and more — on its own and keeps improving as they evolve. No token is ever synthesized or fetched from an external API: the challenge is completed in the valid live browser and the provider's own JavaScript issues the token itself — which is why even new or unknown protections pass.
  • Real hardware, real GPUs — sessions run hardware-accelerated on real consumer GPUs, not on VM cores with a WebGL faking layer. Canvas and WebGL readbacks (toDataURL, getImageData) return genuinely rendered pixels — no spoofing layer or fingerprint hash database for new bot protections to unmask.
  • Network control at the source — interception sits in the browser's network stack itself, so every request from every frame (including cross-origin OOPIFs) passes through it; no handler races, nothing slips through. Wait for, block, mock or modify requests and responses without leaving the SDK; mark repeated assets as static with setStaticPaths to serve them from a server-side cache and cut proxy bandwidth on repeat runs.
  • Agent-friendly observationgetObservation returns a compact text/JSON view of the visible, interactive elements across every frame, each with a node handle to act on, so a model reasons over what matters instead of raw HTML.
  • Flow-optimized TypeScript — fully typed promise-based API, wait races multiple outcomes, JS locators target elements by page logic when CSS is not enough. Runs in Node.js (native gRPC) and the browser (WebSocket via wrc-ts/browser).

Install

npm install wrc-ts

Requires Node 18+. Ships as an ES module with bundled type declarations.

Quickstart

import { rentBrowser, BrowserConfig, css } from "wrc-ts";

async function main() {
    // Empty proxy fields tell WRC to allocate a managed proxy server-side;
    // pass your own host/port/creds to bring your own.
    const cfg = new BrowserConfig(
        "YOUR_API_KEY", // sk_…
        300,            // rent duration in seconds (5 minutes)
        "", 0, "", "",  // proxy host / port / user / pass
    );

    const browser = await rentBrowser(cfg);
    try {
        await browser.navigate("https://example.com");
        await browser.wait(css("h1"));

        const res = await browser.evaluate("document.title");
        console.log("title:", res.value);
    } finally {
        await browser.stopBrowser(); // always release the session
    }
}

main();

Run it and you should see title: Example Domain. Get an API key from your dashboard.

Documentation

Go

Prefer Go? Use the Go SDK: wrc_go.

License

MIT