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

stealth-scraper

v0.1.0

Published

Official TypeScript/JavaScript SDK for Stealth Scraper — anti-bot-resistant web scraping API.

Readme

stealth-scraper (TypeScript / JavaScript)

Official TypeScript/JavaScript SDK for Stealth Scraper — the anti-bot-resistant web scraping API.

Status: beta — npm release coming with the Product Hunt launch (June 1, 2026). Until then, install from git (works today).

Install

# During beta — install directly from GitHub:
npm install github:Rusheesonu/Stealth-Scraper#path:sdks/typescript

# After June 1 npm release:
npm install stealth-scraper
# or pnpm add stealth-scraper
# or yarn add stealth-scraper

Quickstart

import { StealthClient } from 'stealth-scraper';

const client = new StealthClient({ apiKey: 'ssk_...' }); // or set STEALTH_SCRAPER_API_KEY

// Stealth snapshot
const snap = await client.snapshot('https://news.ycombinator.com/');
console.log(snap.title, snap.elementCount);

// Run a saved template
const result = await client.extract({
  url: 'https://news.ycombinator.com/',
  templateId: 't_xxx',
});
console.log(result.fields);

// AI-assisted one-shot extraction
const data = await client.assistExtract({
  url: 'https://news.ycombinator.com/',
  description: 'get the top 20 story titles, scores, and links',
});
console.log(data.template, data.fields);

Streaming snapshots

for await (const ev of client.snapshotStream({ url: 'https://heavy.example' })) {
  console.log(ev.event, ev.progress, ev.message);
  if (ev.event === 'done' && ev.result) console.log(ev.result.title);
}

Features

  • Typed result + error objectsSnapshotResult, ExtractResult, AntiBotBlockError(vendor), PlanLimitError(used, limit, upgradeUrl), OverloadedError(retryAfterS), RateLimitError, AuthError.
  • Automatic idempotency keys — every mutating call sends an Idempotency-Key header. Safe to retry.
  • Cost previewclient.estimate({ url, schema }) returns expected credits before you spend them.
  • Streaming snapshotsfor await (const ev of client.snapshotStream(...)).
  • Zero runtime deps — uses the platform fetch. Works in Node 18+, Deno, Bun, and modern browsers (with an appropriate CORS config).
  • Dual ESM + CJS buildimport { StealthClient } from 'stealth-scraper' and const { StealthClient } = require('stealth-scraper') both work.

Error handling

import {
  StealthClient,
  AntiBotBlockError,
  RateLimitError,
  PlanLimitError,
} from 'stealth-scraper';

try {
  await client.snapshot('https://www.cloudflare-protected.example');
} catch (e) {
  if (e instanceof AntiBotBlockError) {
    console.error(`blocked by ${e.vendor}: ${e.suggestion}`);
  } else if (e instanceof RateLimitError) {
    console.error(`slow down, retry in ${e.retryAfterS}s`);
  } else if (e instanceof PlanLimitError) {
    console.error(`used ${e.used}/${e.limit} — upgrade at ${e.upgradeUrl}`);
  }
}

Configuration

| Option | Env var | Default | | ------------ | -------------------------- | -------------------------------- | | apiKey | STEALTH_SCRAPER_API_KEY | required | | baseUrl | — | https://api.stealthscraper.dev | | timeoutMs | — | 120000 | | fetch | — | global fetch |

Development

npm install
npm run build           # produces dist/{index.js,index.cjs,index.d.ts}
npm test

RUN THIS TO PUBLISH

npm install
npm run build
npm publish --access public   # logged in as the package owner

License

MIT