Ask HN: What's your go-to back end for simple projects?
1–10 of 65 posts
Re: Ask HN: What's your go-to back end for simple projects?
#2You get lots of great stuff out of the box. Perfect for me to get up and running quickly for simple/side projects.
Writing Ruby feels nice and is always a welcome change of pace from a lot of the heavy JS stuff I am doing on frontend atm.
Re: Ask HN: What's your go-to back end for simple projects?
#3Re: Ask HN: What's your go-to back end for simple projects?
#4As 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.
Re: Ask HN: What's your go-to back end for simple projects?
#5I am a sysadmin. I like Perl and its plethora of modules. With Mojolicious, I can write a simple web app/prototype within the hour.
Re: Ask HN: What's your go-to back end for simple projects?
#6Re: Ask HN: What's your go-to back end for simple projects?
#7Good 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 of the JavaScript.
Re: Ask HN: What's your go-to back end for simple projects?
#8The ORM is really usable and simple CRUD apps are pretty easy after you've used it a few times. Django Admin for free is nice too.
Re: Ask HN: What's your go-to back end for simple projects?
#9The language you know the most would be best fit. Maybe Python/Rails/Go could be most optimal fit, if you know very good Java or PHP and don't want to waste time on learning something new - stay with that.