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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@n8n-zengchao/n8n-nodes-browserless

v0.6.0

Published

n8n mode integrate with Browserless platform

Downloads

40

Readme

n8n-nodes-browserless

This is an n8n community node. It lets you interact with browserless instance in your n8n workflows.

browserless is a web-service that allows for remote clients to connect, drive, and execute headless work; all inside of docker. It offers first-class integrations for puppeteer, playwright, selenium's webdriver, and a slew of handy REST APIs for doing more common work. On top of all that it takes care of other common issues such as missing system-fonts, missing external libraries, and performance improvements. We even handle edge-cases like downloading files, managing sessions, and have a fully-fledged documentation site.

If you've been struggling to get Chrome up and running docker, or scaling out your headless workloads, then browserless was built for you.

You've been tried to do browser related tasks with n8n for example web scraping, browser automation, e2e test. pdf generation and dont want't to care much about the browser infrastructure and interaction then n8n-node-borowserless will make your life much easier.

n8n is a fair-code licensed workflow automation platform.

Installation
Operations
Credentials
Compatibility
Usage
Resources
Version history

Highlights

  • [x] Fully controled browserless
  • [x] Cloud compatible
  • [x] Docker support by defailt
  • [x] Live debug browser
  • [x] Inject javascript
  • [X] Render dynamic page
  • [x] Download pdf
  • [x] Capture screenshot
  • [x] Excute custom code

Installation

$ docker run \
  --rm \
  -p 3000:3000 \
  -e "MAX_CONCURRENT_SESSIONS=10" \
	-e "TOKEN=YOUR-SECURE-TOKEN" \
  browserless/chrome:latest
  • Visit your n8n running instance > setttings > community nodes > install n8n-nodes-browserless
  • Setup borserless credentials url http://localhost:3000 token YOUR-SECURE-TOKEN
  • Adding browserless to your workflow by typing browserless into node search
  • Start using your browserless

Follow the installation guide in the n8n community nodes documentation.

add comunitity noden8n-node-browserless to your n8n platform

Operations

Credentials

This node require a browserless url and token in order to connect to your browserless account or out self-hosted borwserless instance.

Compatibility

I develop the node on [email protected]. I don't have the change to test on other versions yet.

Usage

  • Add browserless node into your workflow
  • Set up your node image

Anti-bot-detector

With strong support form browserless we can have greate anti-bot-detector by following setup

  • Browser Options > Steath On
  • Browser Options > Headless Off

Resources

Version history

  • 0.0.1 Initital release
  • 0.2.0 Fixed common issues
  • 0.3.0 Fixed #1, implement tests
  • 0.4.0 Adding browser options, adding no-cache as default header
  • 0.5.0 Implement anti-bot-detector