I developed a robust AngularJS
application that had been functioning well up until this point.
My issue arose when some users (using ancient computers with single CPUs) began reporting that the application was running unbearably slow.
Upon checking the task manager, I noticed that the CPU usage for the tab constantly ranged from 70% - 100%, especially on machines with just one core.
Given that the application runs smoothly on more powerful computers, I am uncertain if this is truly a performance problem. And even if it is, I'm unsure how to diagnose it since I can't rely on Chrome's performance tools.
Is there any way to address this concern? Can I instruct Angular
to execute its digest cycles less frequently?
Has anyone else faced a similar challenge? Any advice would be greatly appreciated.