Get support for shimohq/finch

If you're new to LTH, please see our FAQ for more information on what it is we do.

Support Options

Unfortunately, there are currently no active helpers for this repository on the platform. Until they become available, we reccomend the following actions:

View Open Issues

Take a look to see if anyone else has experienced the same issue as you and if they managed to solve it.

Open an Issue

Make sure to read any relevant guidelines for opening issues on this repo before posting a new issue.

Sponsor directly

Check out the page and see if there are any options to sponsor this project or it's developers directly.

shimohq/finch

Finch

🤖 Puppeteer as a Service

Features

  • Optimized for cold start by introducing a browser pool
  • Emoji friendly! ❤️
  • Google Noto Font is used, so no more "tofu"s!
  • Resources will be carefully reclaimed to avoid any leakings in a long run
  • We love Docker
  • Easy to use and approachable if you've used Puppeteer before

How to use

A Dockerfile is provided for setting up Finch easier:

docker build -t finch .
docker run -p 9001:9001 finch

A Puppeteer cluster will be listening to the port 9001 for you to use as native Puppeteer:

// Replace puppeteer.launch with puppeteer.connect
const browser = await puppeteer.connect({
  browserWSEndpoint: 'ws://127.0.0.1:9001/'
});

// Everything else stays the same
const page = await browser.newPage();
await page.goto('https://example.com/');
await page.screenshot({ path: 'screenshot.png' });
browser.close();
Our Mission

We want to make open source more sustainable. The entire platform was born from this and everything we do is in aid of this.

Interesting Articles

Thank you for checking out LiveTechHelper |
2025 © lth-dev incorporated

p-e622a1a2