Ask HN: What is the coolest JS library out there?
31–40 of 95 posts
Re: Ask HN: What is the coolest JS library out there?
#32I'd have to say Q promises ( https://github.com/kriskowal/q , adds promises to JS for much cleaner async code). Even though it's not "cool" in the sense that it's very low level and doesn't do fancy UI stuff, my asynchronous code has become significantly cleaner and easier to maintain through using promises rather than having callback pyramids. The ability to wait for a number of promises to resolve before firing the…
Re: Ask HN: What is the coolest JS library out there?
#33It breaks down large frameworks like jQuery, Underscore, Backbone, Twitter Bootstrap, etc into small, reusable, and composable micro libraries. There are UI elements like tool tips and modals, wonderful and tiny DOM manipulation tools, well documented AJAX libraries, and more low-level functional and control-flow related tools. It's really amazing.
It's by TJ Holowaychuk too, who is huge in the node community (Express, Jade, Mocha, Stylus, Connect, and many others).
Re: Ask HN: What is the coolest JS library out there?
#34Re: Ask HN: What is the coolest JS library out there?
#35underscore.js has so many useful helper functions while being lightweight and unobtrusive: http://underscorejs.org/
Re: Ask HN: What is the coolest JS library out there?
#36Github repo: https://github.com/mrdoob/three.js/
Examples: http://mrdoob.github.com/three.js/
Re: Ask HN: What is the coolest JS library out there?
#37Non direct link (to plug my own site with lots of other similar stuff) http://pineapple.io/resources/ace-high-performance-embeddabl...
direct link http://ace.ajax.org/
Re: Ask HN: What is the coolest JS library out there?
#38d3.js ( http://d3js.org/ ) is the king of visualization libraries
Re: Ask HN: What is the coolest JS library out there?
#39Re: Ask HN: What is the coolest JS library out there?
#40Async: https://github.com/caolan/async - it helps avoid callback hell. I use it in node.js.