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 technologies should I learn before entering the field?

4 pointsby svermeulenalmost 12 years ago
I haven't done web development in 5+ years and am anticipating re-entering the field shortly. This could mean writing any web site from e-commerce, to basic company landing pages, to a complex javascript/html5 app, etc.<p>I assume I'll need to know jQuery for client side stuff, and I've heard Node.js is really useful. But what other frameworks are gaining traction today that are worth knowing? It seems like there are so many frameworks, each with different advantages/disadvantages that I have a hard time figuring out where to start!

7 comments

anonyfoxalmost 12 years ago
Let&#x27;s look at the stack bottom-up.<p>You&#x27;ll need probably some kind of Database, right? For most of the usecases in different web-apps a document-based approach is just a perfect fit, i recommend MongoDB, since its fast and very easy to use, and the query language is just javascript. If you need something <i>really</i> fast, choose an in-memory-DB like Redis (again, mostly you don&#x27;t need this, 99% of all webapps won&#x27;t have serious traffic).<p>For the serverside-stuff itself, i highly recommend Node.js. Pair it with one of its great frameworks like express, and you&#x27;ll be up and running in a couple of days. Don&#x27;t even bother with RoR, as of today it is quite a steep learning curve to master, especially with all the different components of the rails-stack. Also see <a href="https://news.ycombinator.com/item?id=6171440" rel="nofollow">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=6171440</a> about Ruby&#x2F;Rails in startups. Since you wrote what kind of webapps you&#x27;re writing, node.js should be a good fit for you. It&#x27;s lightweight, fast and you don&#x27;t need another language to learn, since its just JS.<p>For the Frontend-development it depends on what type of websites you&#x27;ll be developing. If its a &quot;classic&quot; webapp, you&#x27;ll be fine without additions. If you want to build a single-page-application, have a look at backbone.js, it&#x27;s a client-MV* framework. I prefer it over the alternatives because of it&#x27;s minimalistic and intuitive approach, the spirit of node.js.<p>When it comes to styling and the view-code, you&#x27;ll have jade as html-templating-language and stylus as css-preprocessor-language if you want, thei&#x27;re some kind of default with node.js &#x2F; express and pretty good. For layouting, bootstrap is the best ui-framework out there, hands down. Take a look at the (mature) version 2.X or the (upcoming) version 3.<p>If you take my suggested road down, you&#x27;ll have a complete javascript-stack, one language to rule them all. Using the same skillset, you can even build desktopapps with node-webkit or mobile apps with phonegap for example. Just don&#x27;t bother with additional languages, ecosystems and all the hassle, JS will do the job for you today.<p>If you want some kind of standardlibrary for javascript, or better known as the &quot;swiss army knife&quot;, have a look at <a href="http://underscorejs.org/" rel="nofollow">http:&#x2F;&#x2F;underscorejs.org&#x2F;</a> .
argonautalmost 12 years ago
I will go ahead and add some points and disagree with other points.<p>1. I believe that the best path is to start from the top. Start with the most user-facing side of the tech stack, the client-side. Why? Because further down the stack (esp. deployment and DBs), there are more and more modern services&#x2F;libraries that abstract things away. So things like Parse, Firebase, ORMS, Heroku, hosted DBs, MongoHQ, etc. I&#x27;m not saying you should never learn these things, just that in terms of getting an app out the door really quickly, the client-side is the most important piece.<p>2. Agreed with sentiments on this thread about starting with Bootstrap and jQuery. I&#x27;ll chime in and say that while I greatly prefer Angular to Backbone, Backbone can be fairly educational. If you find Backbone frustrating, check out AngularJS. Whether or not you use an html templating language or CSS preprocessor is really up to personal choice. I&#x27;d start with bare HTML honestly. Although CSS is enough of a pain to code in that I&#x27;d recommend SCSS from the get-go.<p>3. I&#x27;ll be pedantic for a bit and point out that Node.js is <i>not</i> a framework - it&#x27;s a runtime environment for JS with some additional standard libs (like a barebones http library). You almost certainly need something like Express.<p>4. Here things diverge a bit. I&#x27;m a big fan of node.js. But let&#x27;s be clear about what your goals are. If you want to get employed at a startup, Rails is vastly more popular and widely used than node.js, and for good reasons. So if that is your goal, that should be a clear winner. But if that doesn&#x27;t concern you, or if you&#x27;re too lazy to learn Ruby, I wholeheartedly endorse starting with node on the server-side. You get to focus your energy on one language, get to share your IDEs, tooling, and testing setup between the client and server, and get something that&#x27;s highly scalable to boot.
评论 #6181155 未加载
vaisakhalmost 12 years ago
The current trend in the web industry is obviously ruby on rails and node.js. You may stick with both these and also client side technologies as well.But the basic thing you want to keep in mind that, &quot;right tool for the right job&quot; is the key.If you want to do some serious web applications, you may go with ror and node.js.Node is really handy and it is getting some respect as well.<p>Good luck :)
georgebonnralmost 12 years ago
Javascript in general is going to be a worthwhile language to spend time in, since it is both client-side and server-side now. All the sides. Having a good working knowledge of Rails I think would be a good complement to that as well.
ulisesrmzrochealmost 12 years ago
Gaining traction, JS and everything in its ecosystem. In a very, very big way. Forget Rails if you&#x27;re starting out. Good chances are we&#x27;re all going to be writing JS in the near future.
yasoobalmost 12 years ago
node.js is a server framework. You should consider learning foundation and bootstrap. If you just want to go for jobs then php is the way to go otherwise you should consider learning python or ruby for web development as there are a lot of jobs for it in the field as well.
评论 #6182926 未加载
slajaxalmost 12 years ago
Raw Javascript both client &#x2F; server. Then learn basic HTML&#x2F;CSS with the help of bootstrap.