I am currently in the process of setting up a WebSocket client to showcase a synchronized list of items that mirror the server's state. My backend is powered by Spring, while my front-end utilizes AngularJS. I have scoured through numerous examples, all of which cover adding items on the client side. However, I am now curious if there is a standard practice for handling both additions and removals. My initial thought was incorporating STOMP
and subscribing to add
and remove topics
. Are there any well-established alternatives?