Abdul Manaf
Abdul Manaf

Reputation: 5003

How to get Azure EventHub data using node js

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

Answers (2)

Ramya Rao
Ramya Rao

Reputation: 111

You can also use the official JavaScript SDK for Azure Event Hubs, @azure/event-hubs.

Upvotes: 0

user793891
user793891

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

Related Questions