puppeteer-undetectable
Version:
This package is designed to bypass puppeteer's bot-detecting captchas such as Cloudflare. It acts like a real browser and can be managed with puppeteer.
12 lines (9 loc) • 335 B
TypeScript
import { ChildProcess } from 'child_process';
// Re-export everything from rebrowser-puppeteer-core
export * from "rebrowser-puppeteer-core";
// Extend the Browser interface from rebrowser-puppeteer-core
declare module "rebrowser-puppeteer-core" {
interface Browser {
launcherProcess(): ChildProcess | undefined;
}
}