https://github.com/rtasalem/passport-data-receiver
Simple Node.js application for receiving mock passport data from a Service Bus queue and sending received messages to a Service Bus topic.
https://github.com/rtasalem/passport-data-receiver
azure nodejs service-bus
Last synced: 28 days ago
JSON representation
Simple Node.js application for receiving mock passport data from a Service Bus queue and sending received messages to a Service Bus topic.
- Host: GitHub
- URL: https://github.com/rtasalem/passport-data-receiver
- Owner: rtasalem
- Created: 2024-03-22T09:22:16.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-24T21:09:42.000Z (about 1 year ago)
- Last Synced: 2025-07-27T06:01:43.733Z (3 months ago)
- Topics: azure, nodejs, service-bus
- Language: JavaScript
- Homepage:
- Size: 156 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Passport Data Receiver
Simple Node.js application for receiving mock passport data from a Service Bus queue and sending received messages to a Service Bus topic. This repo is 2 of 3 that were created based on a [Service Bus exercise](https://github.com/rtasalem/passport-data-receiver/blob/main/docs/node-asb-exercise.png). Application 1 sends messages to a Service Bus queue. Those same messages were then received by application 2 (this application) and then sent to a Service Bus topic. Application 3 will again receive those same messages, but from the topic rather than directly from the original queue. Application 3 also has the functionality to send the messages received from the original topic to another topic:
1. [passport-data-sender](https://github.com/rtasalem/passport-data-sender)
2. [passport-data-receiver](https://github.com/rtasalem/passport-data-receiver)
3. [passport-data-subscriber](https://github.com/rtasalem/passport-data-subscriber)
## Documentation
Refer to the [documentation](https://github.com/rtasalem/passport-data-receiver/blob/main/docs/DOCS.md) for detailed notes on development.
## Getting Started
Run the following command to receive messages from the Service Bus queue and send them to the topic:
```
cd app & node index
```