I'm comparing both ember.js and angularJS and what I like about ember currently is the Router and ember-data (soon to be part of the core framework I hope).
Does anyone know if angularJS supports these 2 features?
I'm not familiar with ember.js but from what I can understand from reading ember's docs there are mechanism in AngularJS that should be (roughly) equivalent:
Both mentioned services ($route and $resource) are great for standard use-cases but show some limitations for more advanced use-cases. Fortunatelly there are always lower-level fallback options ($location for $route and $http for $resource).
I hope that someone more familiar with ember.js will be able to comment more.