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 🙏

© 2025 – Pkg Stats / Ryan Hefner

n8n-nodes-browserless-hots

v1.0.3

Published

Browserless.io integration for n8n - headless browser automation with self-hosted support

Readme

n8n-nodes-browserless-hots

🚀 Hot-fixed Browserless.io integration for n8n - headless browser automation with self-hosted support

🔥 What's Hot

This is an improved version of the original n8n-nodes-browserless package with critical fixes:

  • Fixed type validation errors - no more "setExtraHTTPHeaders must be object" errors
  • Full self-hosted support - works with local Browserless instances
  • Complete parameter support - all Browserless API v2 features implemented
  • Russian interface - all descriptions and hints in Russian
  • Modern API compatibility - tested with latest Browserless versions

Установка

npm install n8n-nodes-browserless-hots

Credentials

Настройте credentials в n8n:

  • Endpoint: URL вашего self-hosted Browserless сервера (например: http://localhost:3000)
  • API Token: Токен API для авторизации

Различия с оригинальным n8n-nodes-browserless

| Функция | Оригинальный | n8n-nodes-browserless-hot | |---------|-------------|---------------------------| | Типы данных | ❌ Ошибки валидации | ✅ Исправлены все типы | | Self-hosted | ❌ Частично | ✅ Полная поддержка | | Launch параметры | ❌ Не реализованы | ✅ Все параметры | | Request параметры | ❌ Не реализованы | ✅ Все параметры | | Специфичные опции | ❌ Отсутствуют | ✅ Полная реализация | | Русский интерфейс | ❌ Английский | ✅ Полностью на русском | | Browserless API v2 | ❌ Частично | ✅ Полная поддержка |

Операции

1. Content (Контент)

Получает полный HTML страницы с JavaScript рендерингом.

2. Screenshot (Скриншот)

Создаёт скриншот страницы в форматах PNG/JPEG/WebP.

3. PDF

Генерирует PDF документ из страницы или HTML.

4. Scrape (Парсинг)

Извлекает структурированные данные по CSS селекторам.

5. Performance (Производительность)

Анализирует страницу через Lighthouse (performance, SEO, accessibility).

6. Unblock (Разблокировка)

Обходит защиту от ботов и получает контент заблокированных страниц.

Параметры

Launch параметры (query)

  • headless: Режим без GUI
  • stealth: Маскировка автоматизации
  • blockAds: Блокировка рекламы
  • blockConsentModals: Скрытие cookie баннеров
  • slowMo: Задержка между действиями
  • acceptInsecureCerts: Принимать небезопасные сертификаты

Request параметры (body)

  • url: URL страницы
  • html: HTML контент (альтернатива URL)
  • gotoOptions: Опции навигации
  • waitForSelector: Ожидание элемента
  • bestAttempt: Продолжить при ошибках

Публикация

Для публикации пакета на npm:

# Убедитесь что версия обновлена в package.json
npm version patch  # или minor/major

# Публикация
npm publish

Разработка

npm install
npm run build
npm run dev

Структура проекта

n8n-nodes-browserless-hot/
├── package.json
├── tsconfig.json
├── .npmignore
├── README.md
├── credentials/
│   └── BrowserlessApi.credentials.ts
├── nodes/
│   └── Browserless/
│       ├── Browserless.node.ts          # Основная нода
│       ├── GenericFunctions.ts          # API функции
│       ├── browserless.svg              # Иконка
│       └── descriptions/                # Описания параметров
│           ├── CommonFields.ts          # Общие параметры
│           ├── ContentDescription.ts    # Content операция
│           ├── ScreenshotDescription.ts # Screenshot операция
│           ├── PdfDescription.ts        # PDF операция
│           ├── ScrapeDescription.ts     # Scrape операция
│           ├── PerformanceDescription.ts# Performance операция
│           └── UnblockDescription.ts    # Unblock операция
└── dist/                               # Скомпилированные файлы

License

MIT