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-pulsarproducer

v1.0.8

Published

Publish messages to Apache Pulsar

Downloads

22

Readme

n8n-nodes-pulsarproducer

This is an n8n community node. It is used to publish messages to Apache Pulsar.

1763057374115

n8n is a fair-code licensed workflow automation platform.

What makes this node unique?

This node is built on @pulsar-js/producer instead of the official pulsar-client module.

The official pulsar client module is a wrapper around the Pulsar C++ library. Native Node.js modules are notoriously difficult to setup because they require a compiler (used by node-gyp) to handle the build step. This can be a blocking barrier in environments that do not allow extra build tools.

The @pulsar-js/producer module, which was written for this node, uses a pre-built binary. This eliminates the need for a C++ compiler. The pre-built binary is written in Go using the official Pulsar Go client.

WARNING

n8n actively blocks postinstall and outbound downloads from modules at runtime (for security purposes). As a result, the binaries used by this module cannot be easily installed directly through the n8n portal unless they are packaged with the npm module. This requires OS/architecture-specific versions of this module (i.e. one npm module for every OS/architecture). That is something we'd like to do, but it needs to be automated as part of the release cycle. We've not had time to automate this yet. Since this is a new module and we're not sure how many people will use it, we're taking a "build on request" approach to this. Open an issue to request a specific architecture. In the meantime, see the "Installation > Dependency Installation" section to get this working.

Table of Contents

  1. Installation
  2. Credentials
  3. Compatibility
  4. Usage
  5. Resources
  6. Development

Installation

Follow the installation guide in the n8n community nodes documentation. This module is named n8n-nodes-pulsarproducer.

Dependency Installation

This node relies on @pulsar-js/producer. n8n's security policies make it difficult to install binaries unless they are packaged with the module. We cannot bundle every OS/architecture-specific binary in this module without making it unfeasibly large. We intend to make OS/architecture-specific npm modules as requested. If your OS/architecture is not yet supported, you can request it (open an issue), or you can install the dependencies using the instructions below.

  1. Install the node through the portal as you would any other community module.
  2. On your n8n server, navigate to the n8n-nodes-pulsarproducer module dependencies. It will be in a directory like /<my_n8n_root>/main/.n8n/nodes/node_modules/n8n-nodes-pulsarproducer/node_modules/@pulsar-js/producer.
  3. Run npm run postinstall.

This will generate a bin directory with the correct binary for your OS.

ls -l ./bin
-rwxr-xr-x 1 root root 18088084 Nov 15 15:15 pulsar-publish

Credentials

This module supports the following Pulsar authentication strategies:

  • None
  • Basic Auth
  • OpenID Connect (OIDC)
  • Mutual TLS (mTLS)
  • OAuth2
  • Athenz

1763058982159

Compatibility

This node was written and tested in the following environment:

  • n8n v1.108.1
  • platform: npm
  • Node.js v24.0.0
  • database: sqlite
  • executionMode: regular
  • concurrency: -1
  • license: community

Usage

This node is designed for node workflows that need to publish individual messages.

A new connection is established for each message/batch sent (no connection pooling). Once a message is sent, the connection is dropped. This is not ideal for platforms that send a constant stream of messages or need the absolute lowest possible latency. However; if you need to send <500 messages per minute, the latency is negligble (<1ms) and the connections are lightweight. The limiting factor is much more likely to be your Pulsar cluster capacity than these ephemeral connections.

Resources

Development

I created this node because I couldn't install the alternatives in a restricted n8n environment. Additionally, the existing Pulsar nodes for n8n did not fully support OIDC, which is something I needed at the time of creation.

Copyright © 2025, Corey Butler. MIT License.