If you wish to deliver (or) push data from your web server to your web application running in a browser in real time, you have 4 options at the time of writing this post (2022).
- Polling / Long Polling.
- Server Sent Events (SSE).
- Websockets.
- WebPush
Polling
Polling and Long Polling has …