In Backbone.js you can use the Router to bind to # changes to navigate around a single-page HTML5 app.

Is there an equivalent for Ember.js? Or have I missed something fundamental about its design?

link|improve this question

Wow... How do I give basically the same answer earlier but don't get the accepted answer? Interesting how StackOverflow works. – Roy Daniels Jan 17 at 14:24
Oh I didn't filter by time - there was just slightly more information in ebryn's answer. Thanks though! – stef Jan 17 at 17:13
feedback

5 Answers

up vote 4 down vote accepted

There are plans to write a router for Ember. It will likely be integrated with the Ember StateManager. For now, you can use sproutcore-routing or another routing solution. I'm currently using sproutcore-routing successfully, but it has some limitations.

link|improve this answer
What improvements over sproutcore-routing are important to you for an ember router? – Luke Melia Jan 17 at 13:54
The main reason is sproutcore-routing isn't very well tested. There could also be some cleaner integration/conventions around the Ember StateManager. – ebryn Jan 17 at 21:16
Also, I don't think sproutcore-routing supports back button navigation in IE7 and IE6. – jeffreyveon Jan 20 at 15:17
@jeffreyveon It does. – ebryn Jan 20 at 21:20
feedback

You may also want to have a look at Ember RouteManager

link|improve this answer
feedback

You might want to check this out: https://github.com/emberjs-addons/sproutcore-routing

link|improve this answer
feedback

Sproutcore-Statechart (for Ember) also has routing support now: https://github.com/emberjs-addons/sproutcore-statechart

link|improve this answer
feedback

I'd imagine this has been left out to keep things "loosely coupled". You could use a self-contained alternative, for instance Sammy or http://davisjs.com/.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.