I have come across a project requirement where I need to display the number of active users on each page. I am considering various approaches but unsure of the best practice in these scenarios. Here are a few options I am considering:
1. Using SignalR
2. Implementing portal programming
3. Investigating if Google Analytics can provide this information
The application is built using AngularJS, and each page has the same URL with different parameters. The goal is to show the number of users who have accessed the same route (page) at the top of each page.
Any suggestions or guidance on which direction to focus my research would be greatly appreciated. Thank you.