Ultimate AngularJS and Ionic performance cheat sheet
Juri Strumpflohner
Published
Interesting article that lists many performance tips and tricks for Angular v1.x.
$watch
- one-time binding
- track by
- use
$log
instead ofconsole.log
- disable debug diagnostics ->
$compileProvider.debugInfoEnabled(false)
- loops (it depends how you write it…yep…)