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

n8n-nodes-cloudbrowser

v0.1.3

Published

CloudBrowser node for n8n that allows users to interact with websites using Puppeteer - retrieve HTML, take screenshots, and generate PDFs

Readme

Banner image

n8n-nodes-cloudbrowser

This is a node for n8n that allows users to interact with websites using a cloud-based browser instance powered by Puppeteer. It provides various operations to navigate websites and retrieve different types of content.

Installation

Follow these steps to install this node:

# Install via npm
npm install n8n-nodes-cloudbrowser

# Or directly from n8n
n8n community-nodes add n8n-nodes-cloudbrowser

Features

The CloudBrowser node offers the following operations:

1. Get Website HTML

This operation allows you to navigate to a specific URL and retrieve the HTML content of the page.

Output:

  • Page title
  • Final URL (after any redirections)
  • Full HTML content

2. Get Website Screenshot

This operation allows you to navigate to a specific URL and capture an image of the page.

Options:

  • Full page or viewport only
  • Image quality (for JPEG)
  • Image format (JPEG or PNG)
  • Crop area (coordinates and dimensions)

Output:

  • Screenshot in base64
  • Binary data
  • File metadata (name, extension, MIME type)

3. Get Website PDF

This operation allows you to navigate to a specific URL and generate a PDF version of the page.

Options:

  • Paper format (A4, Letter, etc.)
  • Orientation (portrait/landscape)
  • Print backgrounds
  • Scale
  • Margins
  • Page ranges

Output:

  • PDF in base64
  • Binary data
  • File metadata (name, extension, MIME type)

Configuration

All operations require the following common parameters:

  • CloudBrowser API Credentials: Your CloudBrowser API credentials for authentication
  • URL to Navigate: The URL of the website to visit
  • Navigation Options:
    • Wait until event (load, domcontentloaded, networkidle)
    • Timeout

Additional browser configuration options include:

  • Browser type (Chrome, Chromium)
  • Headless mode
  • Stealth mode
  • Session management
  • Proxy configuration

Usage Example

Capture a screenshot of a website and save it as a file

  1. Add the CloudBrowser node
  2. Configure the CloudBrowser API credentials
  3. Select the "Get Website Screenshot" operation
  4. Specify the URL (e.g., https://n8n.io)
  5. Configure the screenshot options as needed
  6. Connect to a Write Binary File node to save the image

Generate a PDF of a website

  1. Add the CloudBrowser node
  2. Configure the CloudBrowser API credentials
  3. Select the "Get Website PDF" operation
  4. Specify the URL (e.g., https://docs.n8n.io)
  5. Configure the PDF options as needed
  6. Connect to a Write Binary File node to save the PDF

API Requirements

This node requires an API token from the CloudBrowser.ai service. Please register at https://cloudbrowser.ai to obtain your API token and configure it in the credentials section.

Testing

This node is thoroughly tested to ensure reliability and functionality. To run tests:

# Install dependencies
npm install

# Run tests
npm run test

# Run tests with coverage report
npm run test:coverage

For more information about testing, see the test documentation.

License

MIT