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-amqp-ssl

v1.0.0

Published

AMQP 1.0 nodes for n8n specifically designed for Cegid Cloud with stunnel proxy integration

Readme

n8n-nodes-amqp-ssl

n8n.io - Workflow Automation

Advanced AMQP 1.0 nodes for n8n with enterprise-grade SSL/TLS support, certificate authentication, and automatic stunnel integration for Cegid Cloud compatibility.

🚀 Features

  • Complete AMQP 1.0 support using the rhea library
  • Advanced SSL/TLS configuration with certificate validation
  • SASL ANONYMOUS authentication for Cegid Cloud compatibility
  • External stunnel proxy support for SSL/TLS termination
  • SNI (Server Name Indication) support
  • Robust error handling with detailed diagnostics
  • Two specialized nodes:
    • AMQP Node: Send messages to AMQP brokers
    • AMQP Trigger: Listen for incoming AMQP messages

🔐 Security Features

  • Client certificate authentication
  • CA certificate validation
  • Private key encryption support
  • Configurable certificate validation
  • TLS version control (1.0 to 1.3)
  • SSL debugging mode for troubleshooting

📦 Installation

Via n8n Community Nodes (Recommended)

  1. Go to SettingsCommunity Nodes in your n8n instance
  2. Click Install a community node
  3. Enter: n8n-nodes-amqp-ssl
  4. Click Install
  5. Restart n8n if required

Via npm (for self-hosted n8n)

# Navigate to your n8n installation directory
cd ~/.n8n

# Install the package
npm install n8n-nodes-amqp-ssl

# Restart n8n

🔧 Configuration

Basic TCP Connection

  • Hostname: Your AMQP broker hostname
  • Port: AMQP port (default: 5672)
  • Username/Password: Authentication credentials
  • Transport Type: tcp

SSL/TLS Connection

  • Hostname: Your AMQP broker hostname
  • Port: AMQPS port (default: 5671)
  • Transport Type: tls
  • CA Certificate: Certificate Authority certificate (PEM format)
  • Client Certificate: Your client certificate (PEM format)
  • Private Key: Your private key (PEM format)
  • Passphrase: Private key passphrase (if encrypted)

Advanced SSL Options

  • Certificate Authentication: Use certificate-only auth (no username/password)
  • Reject Unauthorized: Validate server certificates
  • Server Name (SNI): Custom server name for SNI
  • SSL Debug Mode: Enable detailed SSL debugging
  • Minimum TLS Version: Set minimum TLS version (1.0-1.3)

🎯 Usage Examples

Sending Messages

Use the AMQP Node to send messages to queues or topics:

  • Configure your broker connection
  • Set the destination (queue/topic name)
  • Add your message content
  • Configure message properties as needed

Receiving Messages

Use the AMQP Trigger to listen for incoming messages:

  • Configure your broker connection
  • Set the source (queue/topic name)
  • Configure subscription options
  • Process incoming messages in your workflow

🔒 Cegid Cloud Integration

SASL ANONYMOUS Support

This package automatically detects Cegid Cloud servers and uses SASL ANONYMOUS authentication to resolve compatibility issues:

  • Auto-detection: Recognizes *.cegid.cloud hostnames
  • SASL ANONYMOUS: Uses rhea's official SASL API
  • External stunnel: Works with separately deployed stunnel proxy

Setup for Cegid Cloud

  1. Deploy stunnel using the provided stunnel-solution/ configuration
  2. Configure n8n to connect to your stunnel server (TCP port 5672)
  3. Use TCP transport - stunnel handles SSL/TLS externally
  4. Connect successfully - SASL ANONYMOUS authentication works seamlessly!

🛠️ SSL Troubleshooting

If you encounter SSL certificate errors, check the stunnel-solution/ directory for detailed setup guides.

Common issues:

  • Bad certificate error: Verify certificate validity and server trust
  • Certificate verification failed: Check CA certificate configuration
  • Connection timeout: Verify hostname, port, and network connectivity
  • Cegid Cloud SSL errors: Deploy external stunnel proxy and use TCP transport

🧪 Testing

The package includes comprehensive tests for SSL/TLS functionality:

npm test

📚 Documentation

  • IMPROVEMENTS.md - Detailed technical improvements
  • stunnel-solution/ - Complete stunnel setup guide for Cegid Cloud
  • CHANGELOG.md - Version history and changes

🤝 Contributing

  1. Fork the repository
  2. Create your feature branch
  3. Commit your changes
  4. Push to the branch
  5. Create a Pull Request

📄 License

MIT License - see LICENSE.md for details

🆘 Support

For issues and questions:

  1. Check the troubleshooting guides
  2. Enable SSL debug mode for detailed logs
  3. Open an issue on GitHub with detailed error information

🏆 Credits

Built with enterprise-grade security and reliability in mind. Features advanced SSL/TLS implementation with comprehensive certificate validation and debugging capabilities.