Author here...I went with CoffeeScript because it's the default in Rails. It also dramatically reduces the total lines of boilerplate code and syntactic noise.
Nice write-up. We're using backbone on a project which is an SPA with a pretty rich domain model. At any point, we may have multiple representations of the same models on the screen. When changes come in from the server, we update the appropriate models and all of the views update accordingly. It's pretty awesome to see it in action.
I've observed that there's a notable learning curve with backbone (maybe all client-side mvc). It may be because the framework doesn't dictate best practices (it's pretty unopinionated, as they say). Also, I've seen backbone thrown into web apps that weren't a good fit, resulting in a lot of friction.
3 comments
[ 4.0 ms ] story [ 20.4 ms ] threadI've observed that there's a notable learning curve with backbone (maybe all client-side mvc). It may be because the framework doesn't dictate best practices (it's pretty unopinionated, as they say). Also, I've seen backbone thrown into web apps that weren't a good fit, resulting in a lot of friction.