javascript - How to make latest ember.js efficient and upgrading from 1.4 to latest? -
i'm using ember.js , think programming part kind of cool, filesize on library kind of feels horrific.
i had simple list-details view application created in 1.4 ember , picked latest ember.js upgrading project. supposedly need ember-template-compiler also. upgrading tips , advice on file size?
i settled 1.8 version instead, seemed kind of compatible version. still upgrading advice helpful.
i think first of should port application ember cli, won't need ember-template-compiler
in production application. if you've read note compiling templates on server side vs client side there's information:
if possible, best practice compile templates server side. faster due less total size (you don't need compiler on client) , less work app needs do.
also code minified, jquery etc. goes 1 big file vendor.js
, should focus on porting app ember cli solve problem @ least ember-template-compiler
file.
Comments
Post a Comment