Ask HN: What are you using as an Angular backend?
1–10 of 19 posts
Re: Ask HN: What are you using as an Angular backend?
#2Re: Ask HN: What are you using as an Angular backend?
#3If 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.
Re: Ask HN: What are you using as an Angular backend?
#4I'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
Re: Ask HN: What are you using as an Angular backend?
#5Re: Ask HN: What are you using as an Angular backend?
#6Firebase added bindings for Angular a few months ago.
Re: Ask HN: What are you using as an Angular backend?
#7I use Scala, Play, Postgres for backend API. I started with checking Flask and learning Rails, but then I just switched back to the stack I am comfortable with as I don't want to learn both new backend and frontend (Angular.js) stuff on the project and focus on delivering. Frontend and backend code are kept separately for now and I use Yeomen for assisting frontend development and it works fine. If you go with Rails…
Re: Ask HN: What are you using as an Angular backend?
#8NodeJS + Express. 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
Re: Ask HN: What are you using as an Angular backend?
#9I 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.
Re: Ask HN: What are you using as an Angular backend?
#10Tastypie 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.