I am using a serverless framework Blitz.js for my app. However, now I want to implement a notification system so the user is notified of any updates. As Blitz.js is serverless, I am not sure how to proceed.
Apologies for the open-ended question, however, I wondered if there is a way/ guide to implement Web-Socket or some kind of polling to inform users?
Secondly, how would one integrate a backend server with a serverless framework like Blitz.
Update: (sharing my thoughts)
The way I see it is that the system would work something like the following. The serverless communication between front-end & serverless would continue as is, now the backend server (if really needed for notification/ polling), would communicate with serverless & forward that on to front-end.