Live data from Hacker News

Ask HN: What's your go-to back end for simple projects?

news.ycombinator.com

11–20 of 65 posts

Re: Ask HN: What's your go-to back end for simple projects?

#11

Google Firebase. As a front-end developer I just can't warrant the time setting up a backend, setting up a database, defining routes, handling authentication and the other nonsense that seemingly takes a solid day to get working. Firebase to me is the best choice for simple projects, I don't use anything else anymore.

As a mostly back-end developer, I'm still a fan of Firebase as well for the right projects. I haven't used it since they were acquired but the free tier still looks pretty generous.

The only downside I really see is once you leave the free tier you're at $25 / month minimum whereas I can run a small backend (or multiple small backends) on a $5 / month box. The difference really adds up if we're talking multiple small projects for multiple years.

Re: Ask HN: What's your go-to back end for simple projects?

#13

Django Good solid base for quickly developing something quickly. Iterating on a database schema has never been easier since 1.7 the migration tools are built in and the ecosystem of plugins has lots of tools that make development of a prototype extremely easy. It just keeps on getting better, just the other day I found an plugin to automatically generate knockout.js powered AJAX forms without me having to write any o…

w..what plugin is that? I need that!

Re: Ask HN: What's your go-to back end for simple projects?

#18
Flask! It's Pythonic and good. Once you've done a couple of Flask projects, you can spin up a new microservice in a couple of hours. It's much lighter weight than Django, so it forces you to keep fewer moving parts in your head while hacking.

http://flask.pocoo.org/

Lately, I've been using Flask on the back-end, and React on the front-end.

Re: Ask HN: What's your go-to back end for simple projects?

#20
post #18

Flask! It's Pythonic and good. Once you've done a couple of Flask projects, you can spin up a new microservice in a couple of hours. It's much lighter weight than Django, so it forces you to keep fewer moving parts in your head while hacking. http://flask.pocoo.org/ Lately, I've been using Flask on the back-end, and React on the front-end.

I also use and love Flask for exactly these reasons. Additionally I've been playing around with Flask_Restful and have been very pleased with the results.
Post reply on HN