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-nvk-call-api

v0.0.9

Published

n8n node for NVK Browser automation API

Readme

n8n-nodes-nvk-browser

This is an n8n community node that provides integration with NVK Browser automation API. It allows you to control browser profiles, interact with web pages, capture network traffic, and execute JavaScript code programmatically.

n8n is a fair-code licensed workflow automation platform.

Installation

Follow the installation guide in the n8n community nodes documentation.

Community Node Installation

  1. Go to Settings > Community Nodes in your n8n instance
  2. Click Install and enter: n8n-nodes-nvk-browser
  3. Click Install

Manual Installation

For local development:

npm install n8n-nodes-nvk-browser

Operations

Profile Management

  • Create Profile: Create a new browser profile with proxy and extensions
  • Delete Profile: Delete an existing browser profile
  • Start Profile: Start a browser profile with custom window settings
  • Stop Profile: Stop a running browser profile
  • Update Profile: Update profile settings (name, proxy, notes, extensions)
  • Download Browser: Download the browser binary

Page Interaction

  • Move and Click: Click on elements using CSS selectors or Puppeteer locators
  • Run JavaScript: Execute JavaScript code in the browser context
  • Get Network Response: Capture and filter network requests/responses
  • Browser HTTP Request: Make HTTP requests using the browser's context (cookies, headers)

Configuration

Environment

Choose between:

  • Local: Connect to http://localhost:3000
  • Docker: Connect to http://host.docker.internal:3000

API Endpoints

The node connects to the following NVK Browser API endpoints:

  • /api/profile/create - Create profile
  • /api/profile/delete - Delete profile
  • /api/profile/start - Start profile
  • /api/profile/stop - Stop profile
  • /api/profile/update - Update profile
  • /api/browser/download - Download browser
  • /api/browser/action - Move and click
  • /api/browser/script - Run JavaScript
  • /api/browser/network - Get network response
  • /api/browser/request - Browser HTTP request

Examples

Create a Browser Profile

{
  "environment": "local",
  "resource": "profileManagement",
  "operation": "createProfile",
  "profileName": "MyProfile",
  "proxy": "http:127.0.0.1:8080:user:pass",
  "note": "Test profile"
}

Start Profile and Navigate

{
  "environment": "local",
  "resource": "profileManagement",
  "operation": "startProfile",
  "profileId": "profile_123",
  "initialUrl": "https://example.com",
  "headless": false
}

Click an Element

{
  "environment": "local",
  "resource": "pageInteraction",
  "operation": "moveAndClick",
  "profileId": "profile_123",
  "selector": "button#submit",
  "clickMethod": "puppeteer"
}

Capture Network Request

{
  "environment": "local",
  "resource": "pageInteraction",
  "operation": "getNetworkResponse",
  "profileId": "profile_123",
  "requestFilter": "api/data",
  "matchType": "contains"
}

Requirements

  • n8n version 0.198.0 or higher
  • NVK Browser API server running on localhost:3000 or accessible via Docker

Credentials

This node does not require any credentials as it connects directly to your local NVK Browser API server.

Compatibility

Tested with n8n version 1.0.0+

Resources

Version History

1.0.0

  • Initial release
  • Support for all 10 core operations
  • Environment selection (Local/Docker)
  • Binary file upload support

License

MIT

Support

For issues and feature requests, please visit the GitHub repository.