TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: What web languages and frameworks would you recommend learning today?

6 pointsby someguy1233almost 10 years ago
I&#x27;ve been wanting to try out some new server-side web frameworks to expand my knowledge (Currently use the Laravel PHP Framework, and ExpressJS), but I&#x27;ve been struggling to find any consistent information about how relevant each framework&#x2F;language is going to be right now, and in the future.<p>There is currently a lot of material on the internet saying how &quot;Node.JS is dying use this&quot;, &quot;Rails is dying use this&quot;, &quot;Django is dying use this&quot; etc.<p>1) Is there any truth behind these claims?<p>2) What languages&#x2F;frameworks do you recommend (for the web) in 2015?<p>3) Have you ever switched to a different framework&#x2F;language and never looked back? (why?) (For new projects, or migrating existing ones)

5 comments

trevordevalmost 10 years ago
1) I don&#x27;t think any of those tools are dying, people are just sharing that other tools will work better in certain situations and each tool has it&#x27;s place. I&#x27;m a fan of nodejs but I have found the dynamic typing and poor performance of JavaScript can hinder my recommendation when building a large, performance critical app.<p>2) The languages&#x2F;frameworks I would recommend depends on what you want to build. The large amount of JavaScript libraries and its ability to work in the browser make me highly favour javascript and I have found that typescript provides a nice layer on top to provide sane typing and code auto completion for many of my needs. However, Typescript tools and the language still feel underdeveloped. I would use node to handle web requests and offload &quot;heavier&quot; work to c&#x2F;rust&#x2F;go if needed<p>3) I used to use c&#x2F;c++ for a lot of my personal project but I have found tasks like managing memory can add unneeded complexity to the majority of my tasks. C still has it&#x27;s place when certain requirements must be met.
评论 #9708455 未加载
iDemonixalmost 10 years ago
Not the answer you are looking for, but I&#x27;ve heard so much about Laravel that I&#x27;ve finally started to dive in. I do wish there were more L5 tutorials around, however.<p>Coming from a background where I did more or less everything myself from scratch, learning the ways of a framework isn&#x27;t the easiest thing I&#x27;ve done in a while.<p>Back on to your topic, what you need to remember is that proponents of a new piece of software will always criticise its rivals. You also need to remember that a lot of people will just learn a single technology, never try the others, but declare the one they are using is the best. I see it a lot at work, people will say X language is far superior to Y language, and if they need to argue why they&#x27;ll Google until they find something that agrees with what they&#x27;re saying. This comic sums it up: <a href="http:&#x2F;&#x2F;i.imgur.com&#x2F;ROS7lGT.jpg" rel="nofollow">http:&#x2F;&#x2F;i.imgur.com&#x2F;ROS7lGT.jpg</a>
评论 #9708189 未加载
评论 #9708408 未加载
scalesolvedalmost 10 years ago
1) If I had to switch from current stack (Java&#x2F;Play Framework&#x2F;Spring) I&#x27;d look at one of those, they all seem super healthy and a lot of remote work uses one of the 3 (I&#x27;m a fan of working remotely).<p>2) Whichever language you enjoy working with and be productive in (I&#x27;ve heard good things about Laravel), don&#x27;t always think the grass is greener. I&#x27;d say try out the Play Framework <a href="https:&#x2F;&#x2F;playframework.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;playframework.com&#x2F;</a> You can code in either Scala or Java and it&#x27;d make a change from dynamic languages for you.<p>3) I switched from Java to Ruby and back again and found the sweet spot of both, I think I&#x27;ve improved more since I stopped worrying if I was missing out and just concentrated on being productive at work and solving problems I enjoy outside of work.
评论 #9708168 未加载
brickcapalmost 10 years ago
I feel that any one who is using nginx would benefit if he learnt a bit of openresty (<a href="http:&#x2F;&#x2F;openresty.org&#x2F;" rel="nofollow">http:&#x2F;&#x2F;openresty.org&#x2F;</a>)
liamcardenasalmost 10 years ago
There comes a point in a developer&#x27;s career where the framework&#x2F;language doesn&#x27;t really matter. Node, PHP, Rails, Django, etc all have their strengths and weaknesses.<p>If you are wondering which framework&#x2F;language to use for a given project, the above questions won&#x27;t really help you. Instead consider the following:<p>1. How much community support does the framework have? For example, a novice NodeJS developer is probably better off using Express than, say, Koa-- which is much less widely used and documented (unless that developer likes struggling through problems). Tackling less supported frameworks can be very educational but is also risky. If you are building a startup based on something that is unstable and&#x2F;or unsupported, you may accumulate some serious technical debt that could hurt you later.<p>2. Try out all your options and decide: which one&#x27;s easier&#x2F;more fun (for you)? If you are trying to build a product, why bog yourself down with a framework that you find more difficult to use, just because some other developers say that it is &quot;not as good&quot;? Many people love ruby and python-- I&#x27;m personally not a fan of either. Does that make rails, django, or flask bad frameworks? Not at all! I just personally don&#x27;t like them. At the end of the day, you are trying to make software that &#x2F;does something&#x2F;. I highly recommend simply picking the easiest&#x2F;&quot;funnest&quot; route. You might even consider using parse to skip backend development altogether (it just makes you more efficient as a developer).<p>3. Are you collaborating with others? If you don&#x27;t have a strong opinion on which framework to use, why not let those who do pick their favorite for you?<p>4. Are there any special libraries&#x2F;tools that you would like to use? Not all ecosystems are created equal. Most languages have frameworks that allow you to easily make HTTP endpoints and packages to help you access databases-- which is all you need for a basic web application. However, sometimes languages will have niche libraries that make them especially ideal for a given use-case. NodeJS and Ruby have very rich ecosystems, however, there have been times where I have been forced to use python or java for this very reason. It depends completely on what you are building.<p>I typically advise people who are just beginning to learn NodeJS, so that, as a web developer, they get more comfortable with JavaScript (I see you already use express, so this may not apply to you). If you are just asking this question for the thrill of trying a new framework, and not from the perspective of using it to build anything in particular, why not try Rust Iron? I&#x27;ve been meaning to check that out, although I&#x27;m not sure if it is production ready yet.