Ask HN: What programming language do you think is the best for Web Applications?
11–20 of 42 posts
It depends on a lot of factors. Building a highly concurrent application such as chat? You may find node or elixir to be good fits. Building a reports service with lots of data crunching? Maybe checkout Python for it’s data libraries like Pandas / numpy. The choice of language stems from the domain you’re solving and what your team knows. Finding a happy middle ground is best, but sometimes you need to prefer either what the team already knows for the sake of time to market and other times you need to prioritize the problem space if the team’s knowledge has a limitation that will prevent it from being a maintainable solution.
Re: Ask HN: What programming language do you think is the best for Web Applications?
#12In my experience, backends are dictated by the business logic, but I use Node when I can. I just move so much faster handling data naturally as JSON or using shared libraries for the frontend and backend objects.
Re: Ask HN: What programming language do you think is the best for Web Applications?
#13There's no such thing. And anyone who thinks there is shouldn't be trusted with making technology choices.
A better question is: what languages and frameworks do you prefer for developing web applications, and why.
Re: Ask HN: What programming language do you think is the best for Web Applications?
#14Pharo + Seaside. For an introduction, see https://books.pharo.org/tinyblog-tutorial/
Re: Ask HN: What programming language do you think is the best for Web Applications?
#15I enjoy ASP.Net Core and C#. Both development time and runtime are fast, most things feel architected and implemented well. And works in Linux.
Re: Ask HN: What programming language do you think is the best for Web Applications?
#16The one you know. Or if you want to try something new, the one that has the best documentation.
Re: Ask HN: What programming language do you think is the best for Web Applications?
#17assembly language
Re: Ask HN: What programming language do you think is the best for Web Applications?
#18assembly language
Re: Ask HN: What programming language do you think is the best for Web Applications?
#19JavaScript is a highly productive for Web Applications, although I also heavily use other alternatives for several reasons, But regardless, that is why it is my candidate for the best programming language especially working with the Web and Web applications in general. Anything beyond that is either niches or outside general purpose web. JavaScript can do:
- advance web applications (electron, NodeJS)
- ETL on the go (i.e. fetch, JSON, DOM, SVG)
- data visualization (i.e. d3, three.js, etc.)
- dependency management (i.e. NPM, CDN, ESM like in Deno)
- learning resources in general (extremely abundant and comprehensive on various sources)
It is hard not to learn JavaScript, it is almost everywhere. Also having to learn the 2nd or the 3rd programming language should also fill-in those gaps, even those huge gaps.
Re: Ask HN: What programming language do you think is the best for Web Applications?
#20In a vacuum inside a perfect sphere, the answer is always Lisp.
In the real world, Elixir. On the frontend, the choice is just one, making it the worst and the best.