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?
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?
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
You can also use the official JavaScript SDK for Azure Event Hubs, @azure/event-hubs.