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

@crunchy-bytes/n8n-nodes-puppeteer

v1.5.0-crunchy.puppeteer-22

Published

n8n node for browser automation using Puppeteer

Readme

n8n-nodes-puppeteer

n8n.io - Workflow Automation

n8n node for browser automation using Puppeteer. This node connects only to a remote browser (e.g. Browserless or any CDP/WebDriver BiDi endpoint). Execute custom scripts, capture screenshots and PDFs, scrape content, and automate web interactions. Full access to Puppeteer's API plus n8n's Code node capabilities. No local browser launch—you must set the WebSocket endpoint (per-node or via PUPPETEER_BROWSER_WS_ENDPOINT / PUPPETEER_WS_ENDPOINT).

How to install

Community Nodes (Recommended)

For n8n version 0.187 and later, you can install this node through the Community Nodes panel:

  1. Go to Settings > Community Nodes
  2. Select Install
  3. Enter n8n-nodes-puppeteer in Enter npm package name
  4. Agree to the risks of using community nodes
  5. Select Install

Docker Installation (Recommended for Production)

We provide a ready-to-use Docker setup in the docker/ directory. The image runs n8n with this node only; the browser must be provided remotely (e.g. Browserless). Set PUPPETEER_BROWSER_WS_ENDPOINT when running the container, or configure the endpoint in each node.

  1. Clone this repository

  2. Build your Docker image:

npm run docker:build
  1. Run the container:
npm run docker:run

Or for testing without persistent data:

npm run docker:run:fresh

Available Docker Scripts

  • npm run docker:build - Build the Docker image with Puppeteer node
  • npm run docker:run - Run n8n with persistent data volume
  • npm run docker:run:fresh - Run n8n without persistent data (clean start)
  • npm run docker:run:external-browser - Run with external browser connection example
  • npm run docker:test - Quick test to verify the image works
  • npm run docker:shell - Open a shell inside the container for debugging
  • npm run docker:clean - Remove the data volume
  • npm run docker:clean:all - Remove data volume and images

Manual Installation

For a standard installation without Docker:

# Navigate to your n8n root directory
cd /path/to/n8n

# Install the package
npm install n8n-nodes-puppeteer

Note: This package uses puppeteer-core and does not download or launch a browser. You must connect to a remote browser (e.g. Browserless) via WebSocket. Set the endpoint in Options or via PUPPETEER_BROWSER_WS_ENDPOINT / PUPPETEER_WS_ENDPOINT. This keeps installs small and avoids dependency issues in n8n Community Nodes.

Browser setup (remote only)

This node connects only to a remote browser. Use the "Browser WebSocket Endpoint" option (or the environment variables below). This approach:

  • Keeps no Chrome/browser dependencies in your n8n environment
  • Simplifies deployment and maintenance
  • Works great for cloud and containerized deployments
  • Supports Firefox via WebDriver BiDi protocol

Options include:

  • Managed Services: Use browserless or browsercloud
  • Self-Hosted Chrome: Run your own browser container:
    docker run -p 3000:3000 -e "TOKEN=6R0W53R135510" ghcr.io/browserless/chromium
  • Self-Hosted Firefox: Run Firefox with WebDriver BiDi support

Configuring Remote Browser Connection

Per-Node Configuration: In any Puppeteer node, go to Options > Add Option:

  • Add "Browser WebSocket Endpoint" and enter your WebSocket URL (e.g., ws://browserless:3000?token=6R0W53R135510)
  • Add "Protocol" and select:
    • CDP (Chrome DevTools Protocol) - for Chrome/Chromium (default)
    • WebDriver BiDi - for Firefox

Global Configuration via Environment Variables (Recommended):

Instead of configuring each node individually, you can set environment variables:

# For Chrome/Chromium
docker run -it -p 5678:5678 \
  -e PUPPETEER_BROWSER_WS_ENDPOINT=ws://browserless:3000 \
  -e PUPPETEER_PROTOCOL=cdp \
  n8n-puppeteer

# For Firefox
docker run -it -p 5678:5678 \
  -e PUPPETEER_BROWSER_WS_ENDPOINT=ws://firefox:4444 \
  -e PUPPETEER_PROTOCOL=webDriverBiDi \
  n8n-puppeteer

Or with Docker Compose:

version: '3.8'
services:
  n8n:
    image: n8n-puppeteer
    environment:
      - PUPPETEER_BROWSER_WS_ENDPOINT=ws://browserless:3000
      - PUPPETEER_PROTOCOL=cdp
    ports:
      - "5678:5678"

  browserless:
    image: browserless/chrome
    ports:
      - "3000:3000"

When environment variables are set, a blue info banner will appear showing the configured endpoint. Individual nodes can still override these settings if needed.

Troubleshooting

Ensure a remote browser WebSocket endpoint is set (Options or PUPPETEER_BROWSER_WS_ENDPOINT / PUPPETEER_WS_ENDPOINT). If the node reports that the endpoint is required, configure it and try again. For connection or protocol issues, see Puppeteer's troubleshooting guide.

Node Reference

  • Operations

    • Get the full HTML contents of the page
    • Capture the contents of a page as a PDF document
    • Capture screenshot of all or part of the page
    • Execute custom script to interact with the page
  • Options

    • All Operations

      • Batch Size: Maximum number of pages to open simultaneously. More pages will consume more memory and CPU.
      • Browser WebSocket Endpoint: (Required unless set via env.) The WebSocket URL of the remote browser to connect to (e.g. Browserless). Can also be set globally via PUPPETEER_BROWSER_WS_ENDPOINT or PUPPETEER_WS_ENDPOINT.
      • Protocol: The protocol to use when connecting to the browser. Options:
        • CDP (Chrome DevTools Protocol) - Default for Chrome/Chromium
        • WebDriver BiDi - For Firefox and cross-browser automation Can also be set globally via environment variable: PUPPETEER_PROTOCOL.
      • Emulate Device: Allows you to specify a device to emulate when requesting the page.
      • Extra Headers: Allows you add additional headers when requesting the page.
      • Timeout: Allows you to specify the maximum navigation time in milliseconds. You can pass 0 to disable the timeout entirely.
      • Protocol Timeout: Maximum time in milliseconds to wait for a protocol response. Pass 0 to disable timeout.
      • Wait Until: Allows you to change how Puppeteer considers navigation completed.
        • load: The load event is fired.
        • domcontentloaded: The DOMContentLoaded event is fired.
        • networkidle0: No more than 0 connections for at least 500 ms.
        • networkidle2: No more than 2 connections for at least 500 ms.
      • Page Caching: Allows you to toggle whether pages should be cached when requesting.
      • Capture Downloads: When enabled, any files downloaded during script execution (via clicks, direct downloads, etc.) will be automatically captured and returned as binary data in the node output. Perfect for downloading PDFs, images, or other files triggered by user interactions. Files are automatically cleaned up after capture.
    • Get PDF

      • File Name: Allows you to specify the filename of the output file.
      • Page Ranges field: Allows you to specify paper ranges to print, e.g. 1-5, 8, 11-13.
      • Scale: Allows you to scale the rendering of the web page. Amount must be between 0.1 and 2
      • Prefer CSS Page Size: Give any CSS @page size declared in the page priority over what is declared in the width or height or format option.
      • Format: Allows you to specify the paper format types when printing a PDF. eg: Letter, A4.
      • Height: Allows you to set the height of paper. You can pass in a number or a string with a unit.
      • Width: Allows you to set the width of paper. You can pass in a number or a string with a unit.
      • Landscape: Allows you to control whether to show the header and footer
      • Margin: Allows you to specify top, left, right, and bottom margin.
      • Display Header/Footer: Allows you to specify whether to show the header and footer.
      • Header Template: Allows you to specify the HTML template for the print header. Should be valid HTML with the following classes used to inject values into them:
        • date: Formatted print date
        • title: Document title
        • url: Document location
        • pageNumber Current page number
        • totalPages Total pages in the document
      • Footer Template: Allows you to specify the HTML template for the print footer. Should be valid HTML with the following classes used to inject values into them:
        • date: Formatted print date
        • title: Document title
        • url: Document location
        • pageNumber Current page number
        • totalPages Total pages in the document
      • Transparent Background: Allows you to hide the default white background and allows generate PDFs with transparency.
      • Background Graphic: Allows you to include background graphics.
    • Get Screenshot

      • File Name: Allows you to specify the filename of the output file.
      • Type field: Allows you to specify the image format of the output file:
        • JPEG
        • PNG
        • WebP
      • Quality: Allows you to specify the quality of the image.
        • Accepts a value between 0-100.
        • Not applicable to PNG images.
      • Full Page: Allows you to capture a screen of the full scrollable content.

Custom Scripts

The Custom Script operation gives you complete control over Puppeteer to automate complex browser interactions, scrape data, generate PDFs/screenshots, and more. Scripts run in a sandboxed environment with access to the full Puppeteer API and n8n's Code node features.

Before script execution, you can configure browser behavior using the operation's options like:

  • Emulate specific devices
  • Set custom headers
  • Enable stealth mode to avoid detection
  • Configure proxy settings
  • Set page load timeouts
  • And more

Access Puppeteer-specific objects using:

  • $page - Current page instance
  • $browser - Browser instance
  • $puppeteer - Puppeteer library
  • $input.query - Input query from AI agents (when used as a tool)

Plus all special variables and methods from the Code node are available. For a complete reference, see the n8n documentation. Just like n8n's Code node, anything you console.log will be shown in the browser's console during test mode or in stdout when configured.

AI Agent Integration

When used as a tool by n8n AI agents, this node supports two powerful workflows:

1. AI-Generated Scripts: AI agents can dynamically generate the entire Puppeteer script using $fromAI() on the Script Code parameter. The AI analyzes the task and writes the appropriate Puppeteer code to accomplish it.

// AI agent generates script dynamically based on the task
scriptCode: $fromAI('code', 'Generate a Puppeteer script to extract product prices from the homepage')

2. Reusable Scripts with AI Input: Write a reusable script that accepts dynamic input from AI agents via the Query parameter. Access the input using $input.query in your script.

// Reusable script that processes AI-provided input
const url = $input.query || 'https://example.com';
await $page.goto(url);

const data = await $page.evaluate(() => {
  return document.querySelector('h1').textContent;
});

return [{ url, title: data }];
// AI agent provides input dynamically
query: $fromAI('url', 'The website URL to scrape')

This makes the node extremely flexible for AI-powered automation - agents can either write custom scripts for specific tasks or pass data to pre-built, reusable scripts.

Basic

// Navigate to an IP lookup service
await $page.goto("https://httpbin.org/ip");

// Extract the IP address from the page content
const ipData = await $page.evaluate(() => {
  const response = document.body.innerText;
  const parsed = JSON.parse(response);
  return parsed.origin; // Extract the 'origin' field, which typically contains the IP address
});

console.log("Hello, world!");

console.log("IP Address", ipData);

// Return the result in the required format (array)
return [{ ip: ipData, ...$json }];

Storing and re-using cookies

Node 1

await $page.goto("https://www.example.com/login");

// Perform login
await $page.type("#login-username", "user");
await $page.type("#login-password", "pass");
await $page.click("#login-button");

// Store cookies for later use
const cookies = await $page.cookies();

return [{ cookies }];

Node 2

const { cookies } = $input.first().json;

// Restore cookies
await $page.setCookie(...cookies);

// Navigate to authenticated page
await $page.goto("https://example.com/protected-page");

// Perform authenticated operations
const data = await $page.evaluate(() => {
  return document.querySelector(".protected-content").textContent;
});

return [{ data }];

Working with Binary Data

await $page.goto("https://www.google.com");
const imageData = await $page.screenshot({ type: "png", encoding: "base64" });
return [
  {
    binary: {
      screenshot: {
        data: imageData,
        mimeType: "image/png",
        fileName: "screenshot.png",
      },
    },
  },
];

Downloading Files

The Capture Downloads option makes it easy to download files triggered by user interactions or scripts:

// Navigate to a page with downloadable files
await $page.goto('https://example.com/downloads');

// Click a download button - the file will be automatically captured
await $page.click('#download-pdf-button');

// Wait a moment for the download to complete
await $page.waitForTimeout(2000);

// Return the result - downloaded files will be attached as binary data
return [{ json: { success: true } }];

When the "Capture Downloads" option is enabled:

  • All files downloaded during script execution are automatically captured
  • Files are returned as binary data in the node output
  • Multiple files are supported - each file gets its own binary property
  • Files are automatically cleaned up after capture
  • Works with direct downloads, click-triggered downloads, and programmatic downloads

This is particularly useful for:

  • Downloading PDFs from web applications
  • Capturing generated reports
  • Saving images or documents triggered by user actions
  • Testing download functionality in automated workflows

Environment Variables

The following environment variables configure the remote browser connection:

  • PUPPETEER_BROWSER_WS_ENDPOINT or PUPPETEER_WS_ENDPOINT: WebSocket URL of the remote browser to connect to (e.g. Browserless). Required unless set per-node in Options.
  • PUPPETEER_PROTOCOL: Protocol to use (cdp or webDriverBiDi). Useful for Firefox setups.

Example:

docker run -it -p 5678:5678 \
  -e PUPPETEER_BROWSER_WS_ENDPOINT=ws://browserless:3000 \
  -e PUPPETEER_PROTOCOL=cdp \
  n8n-puppeteer

Node-level settings always override environment variables when specified.

Firefox Support

This node supports Firefox through WebDriver BiDi protocol. To use Firefox:

  1. Set up a Firefox instance with WebDriver BiDi enabled
  2. Configure the connection either:
    • Per-node: Options > Browser WebSocket Endpoint + Protocol (WebDriver BiDi)
    • Globally: Environment variables PUPPETEER_BROWSER_WS_ENDPOINT + PUPPETEER_PROTOCOL=webDriverBiDi
  3. Execute your workflows with Firefox!

Screenshots

Run Custom Script

Get Page Content

Get Screenshot

License

MIT License

Copyright (c) 2022-2026 Nicholas Penree [email protected]

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.