PotatoSalad.js is the best. I bet a bunch of you actually searched for that on google. What's sad is that is probably the name of some obscure testing library. What have we come to...?
I made a broccoli.js once when I thought I needed a rudimentary canvas image editor, it never really went anywhere but over my head: https://github.com/kennethrapp/broccoli-js but it's honestly terrible and even mentioning it in this thread is a terrible thing to do. I'm going to go think about what i've done now, over in the corner, there.
Ask HN: What is the coolest JS library out there?
81–90 of 95 posts
Re: Ask HN: What is the coolest JS library out there?
#82underscore.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?
#83Personally, I think https://github.com/kripken/emscripten/wiki is mind-blowingly amazing. Check out the demos for sure.
[1] http://badassjs.com/post/43158184752/qt-gui-toolkit-ported-t...
Re: Ask HN: What is the coolest JS library out there?
#84TypeScript. Fastest JS parser I've seen (at least in JS compared to coffeescript, esprima, narcissus, etc), bootstrapped in its own language, great type checker/inferencer, easy to follow codebase.
Re: Ask HN: What is the coolest JS library out there?
#85http://browserify.org/ because it will fundamentally change how you approach writing and organizing front end code. The moment you stop writing boilerplate code to glue your disparate files together and start using a simple module system you will never look back. This is more than a library, it is a way of re-thinking how you can maintain js libraries going forward.
http://requirejs.org/ addresses the same problem (AMD style rather than nodejs require style)
Re: Ask HN: What is the coolest JS library out there?
#86http://browserify.org/ because it will fundamentally change how you approach writing and organizing front end code. The moment you stop writing boilerplate code to glue your disparate files together and start using a simple module system you will never look back. This is more than a library, it is a way of re-thinking how you can maintain js libraries going forward.
I found that browserify tried to do too much by emulating Node within the browser so wrote JoinJS which just implements CommonJS modules without trying to parse the JS files: https://github.com/olegp/joinjs
Your thing could use some tests if you hope for people to trust it :)
Re: Ask HN: What is the coolest JS library out there?
#87The one that makes everyone's lives easier: jQuery. Its not sexy, but it gets the job done for pretty much everyone.
I did prefer prototype.js in the time of ol'. Never understood why jQuery took over it, sadly.
Maybe I just didn't understand it well enough.
Re: Ask HN: What is the coolest JS library out there?
#88The one that makes everyone's lives easier: jQuery. Its not sexy, but it gets the job done for pretty much everyone.
I did prefer prototype.js in the time of ol'. Never understood why jQuery took over it, sadly.
Re: Ask HN: What is the coolest JS library out there?
#89Earlier quoted context omitted.
I made a broccoli.js once when I thought I needed a rudimentary canvas image editor, it never really went anywhere but over my head: https://github.com/kennethrapp/broccoli-js but it's honestly terrible and even mentioning it in this thread is a terrible thing to do. I'm going to go think about what i've done now, over in the corner, there.
I would be interested in this. Does it work?
When I figure out how to get it to work on a github page I'll have a demo up.
Re: Ask HN: What is the coolest JS library out there?
#90I'm a huge fan of Enyo ( http://enyojs.com ). It's stupid-easy to get a native-feeling app running that works across (nearly) every modern device. Mostly, I love its UI components (which are expanded by the associated Onyx library), which means I have less lines of code to write -- which is always better.