All activity
bouncy is a web scraper. Tiny, fast, ships as a single binary — no Node, no Chrome, no Python to install. Point it at a URL and get back the HTML, the visible text, or every link on the page. If the page only renders properly with JavaScript, bouncy will run the JavaScript too. Use it from the command line like curl, or drop it in as a Playwright backend.

bouncyTiny Rust headless browser for scraping.
Maziar Zamanileft a comment
Why I built bouncy Every time I needed to scrape a JS-rendered page, the choice was: spin up Playwright (200+ MB per page, ~1s cold start, Node + Chromium) or fall back to curl + regex (fast, breaks on anything dynamic). For most jobs (fetch a page, extract a title, run one tiny snippet of JS) both felt wrong. So I built bouncy. A tiny Rust headless browser: 10-21 MB per page, ~30 ms cold start...

bouncyTiny Rust headless browser for scraping.
