Ask HN: The State of the Javascript Ecosystem?
I'm a web developer and I've been working in rails for the past year or so. I've been following the development of the javascript ecosystem out of the corner of my eye, but I don't feel like I've truly grasped how all the pieces work together yet.
My question to you all is this: What are the tools and packages that are used in this new workflow? How does the data flow? What packages and code are the most important pieces of this ecosystem and how are they plugged together in different ways?
I realize that lots of people are using javascript in different ways, and I'm interested in hearing about both backend systems (build on node.js?) to frontend UI (jquery?). So maybe another way to phrase the question is: If you were building an end-to-end javascript web application, what tools and packages would you use, and where are the modular boundaries that could be replaced by other technologies?
Thanks in advance!
2 comments
[ 4.7 ms ] story [ 17.8 ms ] threadI'm really excited about technologies like ZeroMQ for IPC which has libraries for all major programming languages. Zed Shaw integrated it into Mongrel2, which is where I first heard about it.
Patio11 stated the other day, that in all his enterprise development work, there was not a single case where XML (which they always used for some reason) was superior to JSON.
I'll let other people pipe up about jQuery, but if you're new to jQuery, now is a great time to learn, because version 1.5 just introduced all kinds of new event goodies which will require me to unlearn the way I currently program using jQuery, because they're that good.
Server side:
Testing:
- Expresso [1]: TDD framework for node -- high speed parallel testing!
- Zombie.js [2]: fast, headless full-stack testing using Node.js
Tools:
- load.js [3]: Lazy load your JS
- npm [4] a package manager for node
- JSDoc [5] Documentation tool
- Docco [6] Literate documentation.
- underscore [7] provides a lot of the functional programming
- node-openid [8] openid.
Frameworks:
- Express [8] Sinatra inspired web development framework for node
[1] http://visionmedia.github.com/expresso/
[2] http://zombie.labnotes.org/
[3] https://github.com/chriso/load.js
[4] https://github.com/isaacs/npm
[5] https://github.com/micmath/JSDoc
[6] https://github.com/jashkenas/docco
[7] http://documentcloud.github.com/underscore/
[8] https://github.com/havard/node-openid
[9] https://github.com/visionmedia/express