I am working on a project that involves managing a list of items using a service. I need an angular component to display these items and update in real-time whenever changes occur.
The list is quite extensive, so I prefer updating it based on change events. I have been looking for something similar to an ObservableArray class to handle this efficiently.
Unfortunately, I haven't come across any suitable options in Angular or rxjs. While Knockout does offer an ObservableArray, I would rather avoid adding a whole new library just for one class.
Is there a different approach or class similar to ObservableArray that I may have overlooked? Any advice would be greatly appreciated as I'm fairly new to Angular development.
Thank you