Introduction
Configuration
Language Support
AMQP 0-9-1 Overview
More Exchange Types
More Consumer Features
Queue Deep-dive
Other Features
Reliable Message Delivery
High Availability
Monitoring
Management HTTP API
Tutorials
Networking
LavinMQ CLI
LavinMQ with NodeJS
Node.js developers have a number of options for AMQP client libraries. In this tutorial, amqp-client.js is used, an asynchronous client for publishing and consuming of messages.
Before we jump right into writing our code, let’s set up the development environment.
Node.js development environment
- First make sure that you have node.js and that it’s available from your command line.
You can confirm this by running:
node --version
- If you do not have node.js installed, go to nodejs.org
- While in the project directory, run
npm init
to initialize that directory as a Nodejs project. Leave all the questions unanswered/empty by pressing enter all the way. - Next add @cloudamqp/amqp-client and dotenv as a dependency to your package.json file.
This can be done by running the following command in the terminal:
npm install --save @cloudamqp/amqp-client dotenv
- Create a
.env
file in in the root directory - Add
CLOUDAMQP_URL="lavinmq_url"
to the `.env’ file. Replace lavinmq_url with your correct server url - In order for amqp-client to work you need to add “type”: “module” to your package.json just right under
"name": "node_tutorials"
like so:
Publishing messages
Consuming messages
Ready to take the next steps? Here are some things you should keep in mind:
Managed LavinMQ instance on CloudAMQP
LavinMQ has been built with performance and ease of use in mind - we've benchmarked a throughput of about 1,000,000 messages/sec. You can try LavinMQ without any installation hassle by creating a free instance on CloudAMQP. Signing up is a breeze.
Help and feedback
We welcome your feedback and are eager to address any questions you may have about this piece or using LavinMQ. Join our Slack channel to connect with us directly. You can also find LavinMQ on GitHub.