Reputation: 5003
I am a beginner in Microsoft event hub. I am successfully sending data to eventHub
using node js(refrence).
How to receive and display the data from event hub? Any idea?
Upvotes: 4
Views: 2866
Reputation: 111
You can also use the official JavaScript SDK for Azure Event Hubs, @azure/event-hubs.
Upvotes: 0
Reputation:
You cannot receive messages using the Azure Event Hub REST APÎ. You can only receive using AMQP 1.0.
Your best option is to look for an AMQP npm package. A quick search also lead me to this: https://github.com/noodlefrenzy/node-amqp10
Upvotes: 3