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

@dominusnode/flowise-tools

v1.3.0

Published

Dominus Node rotating proxy tools for Flowise AI

Downloads

388

Readme

@dominusnode/flowise-tools

Dominus Node rotating proxy tools for Flowise AI workflows.

Provides 26 LangChain-compatible DynamicStructuredTool instances for interacting with Dominus Node's rotating proxy-as-a-service platform inside Flowise nodes.

Installation

npm install @dominusnode/flowise-tools

Quick Start

import { DominusNodeToolkit } from "@dominusnode/flowise-tools";

const toolkit = new DominusNodeToolkit({
  apiKey: process.env.DOMINUSNODE_API_KEY!, // dn_live_... or dn_test_...
});

// Get all tools for your Flowise workflow
const tools = toolkit.getTools(); // DynamicStructuredTool[]

Configuration

| Environment Variable | Description | Default | |---|---|---| | DOMINUSNODE_API_KEY | API key (required) | -- | | DOMINUSNODE_BASE_URL | REST API base URL | https://api.dominusnode.com | | DOMINUSNODE_PROXY_HOST | Proxy gateway host | proxy.dominusnode.com | | DOMINUSNODE_PROXY_PORT | Proxy gateway port | 8080 |

Available Tools (26)

Proxy Operations

  • dominusnode_proxied_fetch - Fetch a URL through the rotating proxy with geo-targeting
  • dominusnode_check_balance - Check wallet balance and remaining bandwidth
  • dominusnode_check_usage - View bandwidth usage statistics
  • dominusnode_get_proxy_config - Get proxy pools, pricing, and endpoints
  • dominusnode_list_sessions - List active proxy sessions

Agentic Wallet Management

  • dominusnode_create_agentic_wallet - Create a custodial sub-wallet with spending limits
  • dominusnode_fund_agentic_wallet - Transfer funds to an agentic wallet
  • dominusnode_agentic_wallet_balance - Check agentic wallet balance
  • dominusnode_list_agentic_wallets - List all agentic wallets
  • dominusnode_agentic_transactions - Get agentic wallet transaction history
  • dominusnode_freeze_agentic_wallet - Freeze an agentic wallet
  • dominusnode_unfreeze_agentic_wallet - Unfreeze an agentic wallet
  • dominusnode_delete_agentic_wallet - Delete an agentic wallet
  • dominusnode_update_wallet_policy - Update daily limits and domain restrictions

Team Management

  • dominusnode_create_team - Create a team with shared wallet
  • dominusnode_list_teams - List all teams
  • dominusnode_team_details - Get team details and member list
  • dominusnode_team_fund - Fund a team wallet
  • dominusnode_team_create_key - Create a team API key
  • dominusnode_team_usage - Get team transaction history
  • dominusnode_update_team - Update team settings
  • dominusnode_update_team_member_role - Change a member's role

Payments

  • dominusnode_topup_paypal - Top up wallet via PayPal ($5–$1,000)
  • dominusnode_topup_stripe - Top up wallet via Stripe ($5–$1,000)
  • dominusnode_topup_crypto - Top up wallet via crypto (BTC/ETH/LTC/XMR/ZEC/USDC/SOL/USDT/DAI/BNB/LINK)
  • dominusnode_x402_info - Get x402 micropayment protocol info

Security

  • Full SSRF protection (private IP blocking, DNS rebinding, Teredo/6to4, hex/octal/decimal normalization)
  • OFAC sanctioned country blocking (CU, IR, KP, RU, SY)
  • Credential scrubbing in all error messages
  • Prototype pollution prevention on all parsed JSON (recursive)
  • HTTP method restriction (GET/HEAD/OPTIONS only for proxied fetch)
  • 10 MB response cap, 4000 char truncation, 30s timeout
  • Redirect following disabled

License

MIT