We have a reactjs based frontend application and we want our reactjs application to read dynamic data published from aws sns message (after every interval of 30 mins) and show it on the frontend.
Thoughts:
- Fan out the sns message to http/https endpoint
- Subscribe reactjs application to that aws sns topic
- read data as it gets published on to that https endpoint
Question:
- Will axios be the best library to read messages from https/http location?
- Any other thoughts/suggestions on how to code it?