Hey there!
I was looking out a list of common rules and practices that has to be followed in order to milk out maximum performance out of an Ionic app.
Anything and everything that makes an Ionic app more faster. From minification of source to deep waters of Ionic and AngularJS.
there is no “definitive guide”.
Ionic team is fighting against big issues to speed up page transitions and so on.
But many things are in your hands.
Like how you program angularjs.
Example: Avoid changing the rootScope, use angularjs events instead of watchers. (watchers can kill your app even if you have the fastest smartphone of the world^^).
reuse code -> put often used functions/ code blocks to services.
Try to avoid dom manipulations.
And so on.^^
Greetz, bengtler