Ask HN: What are you using as an Angular backend?
Interested in what people who are doing medium to large-ish Angular apps are using on their server side? I'm about to embark on a medium sized project and making the it seems like using Rails or Django (the two frameworks I'm most familiar with) are a bit of an overkill given I don't actually need all the routing/templating/viewing gumph that is built in. What do you find is working well for you?
18 comments
[ 3.6 ms ] story [ 46.7 ms ] threadIf you go with Rails you can strip it down and check http://api.rubyonrails.org/ for APIs. There's similar project for APIs in Django.
I've had some good mileage out of SailsJS ( http://sailsjs.com/ ) recently, essentially it is a NodeJS + Express stack with Socket.io and prebuilt ORM/blueprints. Up and running in a matter of minutes and behind the scenes it is still just NodeJS/Express
I had a look at Firebase and my main problem with it is having to rely on 3rd party service and storing data on their servers + portability if I was to decide to leave them in the future.
Tastypie lets you build APIs quickly, and the Django admin lets you browse your data without having to write any code at all. For the kinds of apps I build, things can't get easier than this. YMMV, of course.
I have had some minor issues with Tastypie, but my current project is too far along at the moment to switch to another framework.