I use Django and Tastypie. If you don't need Django's routing, templating, views, etc. then don't use them! Code that is never run doesn't cost you anything. 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.
Ask HN: What are you using as an Angular backend?
11–19 of 19 posts
Have you looked at django-rest-framework? As somebody who has contributed to tastypie, I feel that django-rest-framework is more django-like.
Re: Ask HN: What are you using as an Angular backend?
#12I am using Flask(Python) with PostgreSQL DB for my recent project
Re: Ask HN: What are you using as an Angular backend?
#13I am going to be using Go and Mongo.
Re: Ask HN: What are you using as an Angular backend?
#14I'm using Flask with Flask-Restless for an API.
Re: Ask HN: What are you using as an Angular backend?
#15Tornado when using Python. SpringMVC/Jetty when using Java.
Re: Ask HN: What are you using as an Angular backend?
#16I use Django and Tastypie. If you don't need Django's routing, templating, views, etc. then don't use them! Code that is never run doesn't cost you anything. 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.
Have you looked at django-rest-framework? As somebody who has contributed to tastypie, I feel that django-rest-framework is more django-like.
It's on my TODO list of things to try out.
I have had some minor issues with Tastypie, but my current project is too far along at the moment to switch to another framework.
Re: Ask HN: What are you using as an Angular backend?
#17Flask + MongoDB
Re: Ask HN: What are you using as an Angular backend?
#18We're switching to it on an existing project so the back-end will continue to be Java with Spring.
Re: Ask HN: What are you using as an Angular backend?
#19Clojure + Ring/Compojure + MongoDB (super terse code, easy to test)