Ask HN: Building a large webapp today - what language for the backend, and why?
1–10 of 64 posts
Re: Ask HN: Building a large webapp today - what language for the backend, and why?
#2Re: Ask HN: Building a large webapp today - what language for the backend, and why?
#3I think Clojure makes a lot of sense for the web, emphasis on immutability etc. I also am a sucker for lisps, and I think the Hiccup templating system is nice. Noir seems to do middleware well. Plus, real nerds get on that ClojureScript.
Then again, I kind of also believe that the back-end really shouldn't do much more than process CRUD commands, and that most of your serious application logic should happen on the client. So it doesn't really matter. Pick something with a DB adapter you're comfortable with and get to javascripting.
Re: Ask HN: Building a large webapp today - what language for the backend, and why?
#4Given my current project where i am the sole developer i dont want to know how much more time i would have spent coding in e.g. PHP.
Re: Ask HN: Building a large webapp today - what language for the backend, and why?
#5Re: Ask HN: Building a large webapp today - what language for the backend, and why?
#6Re: Ask HN: Building a large webapp today - what language for the backend, and why?
#7Do you mean starting to build a large webapp today?
I would recommend Ruby on Rails or Python/Django - they allow for fast prototyping and easy collaboration.
Re: Ask HN: Building a large webapp today - what language for the backend, and why?
#8Re: Ask HN: Building a large webapp today - what language for the backend, and why?
#9It's not as 'hip' as Rails/Django but you will be very productive and you will have the benefit of the plethora of Java libraries out there that are performant and reliable. Not to mention the great profiling tools.