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-azure-service-bus-pro

v1.0.0

Published

n8n community node for Azure Service Bus — send, receive, schedule, peek, batch, and manage queues, topics, and subscriptions with full admin CRUD, dead letter support, and session handling.

Readme

n8n-nodes-azure-servicebus

npm version License: MIT

An n8n community node for Azure Service Bus — send, receive, schedule, peek, batch, and manage queues, topics, and subscriptions with full admin CRUD, dead letter support, and session handling.

n8n is a fair-code licensed workflow automation platform.

Installation

Follow the installation guide in the n8n community nodes documentation.

Nodes

Azure Service Bus

Regular node for sending messages and managing Azure Service Bus resources.

Queue & Topic Messaging

| Operation | Description | |-----------|-------------| | Send | Send a JSON or text message | | Batch Send | Send multiple messages from input items in a single batch | | Schedule | Schedule a message for future delivery | | Cancel Scheduled | Cancel a previously scheduled message by sequence number | | Peek | Non-destructive read of messages (supports dead-letter sub-queue) | | Receive Deferred | Receive a deferred message by sequence number |

Queue Admin

| Operation | Description | |-----------|-------------| | Create | Create a new queue with optional settings | | Get | Get queue properties | | List | List all queues in the namespace | | Update | Update queue settings | | Delete | Delete a queue | | Get Runtime Properties | Get message counts, size, and other runtime info |

Topic Admin

| Operation | Description | |-----------|-------------| | Create | Create a new topic | | Get | Get topic properties | | List | List all topics | | Update | Update topic settings | | Delete | Delete a topic | | Get Runtime Properties | Get subscription count and size info |

Subscription Admin

| Operation | Description | |-----------|-------------| | Create | Create a subscription on a topic | | Get | Get subscription properties | | List | List subscriptions for a topic | | Update | Update subscription settings | | Delete | Delete a subscription | | Get Runtime Properties | Get message counts and status |

Azure Service Bus Trigger

Receives messages from queues or topic subscriptions in real time.

| Feature | Description | |---------|-------------| | Entity types | Queue or Topic Subscription | | Receive modes | Peek Lock, Receive & Delete | | Settlement actions | Complete, Abandon, Dead-letter, Defer | | Session support | Session-aware receiving with session ID filter | | JSON parsing | Automatic body parsing option | | Concurrency | Configurable max concurrent calls |

Credentials

You need an Azure Service Bus connection string to authenticate.

  1. Go to the Azure Portal
  2. Navigate to your Service Bus namespace
  3. Open Shared Access Policies
  4. Copy the connection string from your policy (e.g., RootManageSharedAccessKey)

The credential is validated on save — if the connection string is invalid you'll get an immediate error.

Compatibility

  • n8n: 1.0+
  • Node.js: 18+
  • Azure Service Bus tiers: Basic (queues only), Standard, Premium (all features)

Note: Topics, subscriptions, and sessions require Standard or Premium tier.

Resources

License

MIT