Ask HN: What is the best backend framework for working with js-heavy frontends?
So, I'm currently making my first app using backbone.js, and I love the experience! So far, I've only used mock data and done everything client side. Soon I'll have to choose a backend framework, and I know and love Django, but it doesn't seem like a great fit for a single-web-page backbone app. Does a specialized framework for such js-heavy apps even exist? If not, are there any that are better at it than others? Basically all I want to do is shuffle json data to and from the frontend, and store it.
6 comments
[ 3.7 ms ] story [ 22.6 ms ] threadIn pure development speed I think doing it in Django would be the fastest for me, but I hate using the "wrong" tool for the job.
The good news about node.js is that it's fresh and there are tons of howtos and tutorials out there already.
Rails 3.1 asset pipeline greatly helps/simplifies building modular client side apps. I highly recommend trying it out.
If I ever get to learning Ruby / Rails I sure will try it out though!