Tag Archives: optimization

Optimizing an AngularJs app

AngularJS may have a lot of advantages over other frameworks for building front end applications but it can have performance problems when an app starts to get large. There can be several reasons an AngularJS application may be slowing down. Recently during our internal project which was built in angular, we faced a lot of performance issues as the application grew in size and complexity. We took many steps to optimize our application and make it execute without any performance lag. Some of the approaches are discussed below. Reduce Watchers We had lot of 2 way bindings in our project... Read More