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 is the current state of the JavaScript ecosystem?

5 pointsby brwrabout 12 years ago
I want to know more about JavaScript and what's going in the JavaScript world, but I don't even know what the latest technologies are. So what technologies are there? What do they do well? What are they lacking? Why has JavaScript become so popular over the last couple of years and what changes can we expect to see going forward? In short, tell about the current state of the JavaScript ecosystem.

1 comment

dominic_cocchabout 12 years ago
JavaScript is going very strong these days, mostly because it's the language of the web. Every browser supports it natively, and the language has only gotten faster as client compilers get better.<p>Some tech to check out: - jQuery for DOM manipulation (interacting with HTML quickly and effectively) - Underscore.js for a nice toolkit of often-used utilities - node.js for running a server, which means you can have JS on both the client and the server. - Backbone.js/Angular.js/Ember.js (and others) are Javascript MV*s: that make large, single page apps like Pandora faster, more maintainable and easier to build.<p>Things to look forward to: ECMAcsript 6 and 7 are in the works and include tons of new features: <a href="http://en.wikipedia.org/wiki/ECMAScript" rel="nofollow">http://en.wikipedia.org/wiki/ECMAScript</a><p>ASM.js was recently created by Mozilla and it allows near-native speed using pure JS to run things like Unreal Engine inside the browser without the need for plugins: <a href="http://ejohn.org/blog/asmjs-javascript-compile-target/" rel="nofollow">http://ejohn.org/blog/asmjs-javascript-compile-target/</a><p>Even more standardization. IE has finally become a fairly standards compliant browser, so JS in this browser is very likely to work in any modern browser. Coding standards are also more common and are held to more often.<p>Personally, the worst thing about JS in the browser is that you have to deal with the DOM. The DOM is a smelly old piece of crap that acts differently in different browsers.
评论 #5683167 未加载