In this short post I will show you how you can easily test your MVC routes using Fakes as mocking framework. Besides there is a lot of mocking frameworks you can choose to unit test your code, Fakes provides you the ability to mock almost any class within the framework, not just interfaces or virtual... read more
A couple of days ago I’ve been reading and learning about MVC frameworks in Javascript. I’ve started playing with Ember.js first (as it was one of the newest MVC frameworks that I wanted to learn for further comparison with other Javascript-MVC implementations). So I implemented a sample and wrote a post with the features that... read more
Lately I had the chance to read/learn about the main features of Backbone.js and I decided to code a sample page containing most of them. The framework is pretty straightforward to use and seems to be very powerful. Among the stuff you can do very easily the one that I liked most is the synchronization... read more
Today I’ve been playing with the Ember.js framework . This framework allows you to perform browser actions simplifying the need of querying the server for changes/updates (something that you can achieve with jQuery AJAX, but made simpler), and provides you an -state of the art- MVC architecture to help you modularize you app (client side)... read more