puppeteer-ghost
TypeScript icon, indicating that this package has built-in type declarations

0.0.11 • Public • Published

👻 Puppeteer Ghost

npm

  • Bypass CDP, Proxy, webdriver detection
  • Blocks WebRTC to prevent IP leaks
  • Works exactly like regular Puppeteer - just import and use
  • Supports proxy configuration with authentication

📦 Installation

pnpm add puppeteer-ghost
# or
npm install puppeteer-ghost
# or
yarn add puppeteer-ghost

Quick Start

import puppeteer from 'puppeteer-ghost';

const browser = await puppeteer.launch();
const page = await browser.newPage();
await page.goto('https://www.browserscan.net/')

Custom options

const browser = await puppeteer.launch({
  headless: 'new',
  args: ['--window-size=1920,1080'],
  executablePath: '/path/to/chrome'
});

Using with proxy

const browser = await puppeteer.launch({
  proxy: {
    server: 'http://proxy-server:port',
    username: 'proxy-username', // optional
    password: 'proxy-password'  // optional
  }
});

const page = await browser.newPage();
await page.goto('https://www.browserscan.net');

Built with

License

ISC License - see the LICENSE file for details.

Issues

Found a bug? Open an issue.

Package Sidebar

Install

npm i puppeteer-ghost

Weekly Downloads

79

Version

0.0.11

License

ISC

Unpacked Size

12.9 kB

Total Files

8

Last publish

Collaborators

  • ovftank