petermichaux / maria

The MVC framework for JavaScript applications. The real MVC. The Smalltalk MVC. The Gang of Four MVC.
BSD 2-Clause "Simplified" License
764 stars 51 forks source link

Routing examples in maria? #55

Closed jonahx closed 11 years ago

jonahx commented 11 years ago

Are there any example maria applications that domonstrate routing with hashtag urls?

Does maria have any built in support for routing, or are you supposed to use other libraries for this? If so, what recommendations do you have that play nice with maria?

Thanks!

petermichaux commented 11 years ago

Maria has no support for routing. Routing is a concern for modern browser applications but it is not an MVC concern. Maria is focused on creating the MVC structure of an application and that is all.

The Maria example in the TodoMVC project shows using routing with Maria. http://todomvc.com/architecture-examples/maria/

jonahx commented 11 years ago

Great, looks like the integration is super easy. Thanks again Peter.