from Hacker News

Ask HN: What is the coolest JS library out there?

by rohanpai on 2/17/13, 3:18 AM with 92 comments

Pretty open ended question. Just trying to see what cool stuff is out there to play around with.
  • by simonsarris on 2/17/13, 6:08 AM

    (disclosure: shameless plug)

    I make GoJS, a HTML canvas-based diagramming library with all sorts of useful features. Node and link concepts (with data binding, templating), layouts, an undo manager, lots of customizable tools, drag and drop/cut and paste.

    In other words, a very rich set of diagramming features atop HTML5 canvas.

    I think its cool, because it took two years of canvas tomfoolery to get working well, and I think its much faster than similar diagramming libraries for canvas out right now. A lot of technically interesting stuff was encountered while making it, but I haven't had the time to write about my collected intricacies yet.

    http://gojs.net/beta/

    Or straight to samples:

    http://gojs.net/beta/samples/flowchart.html

    Firefox warning[1] for that specific sample though. I need to change the default sample this week.

    [1] Super frustrating! The new IonMonkey JavaScript engine crashes under very certain conditions that are met during my link avoidsNodes algorithm. This means that Firefox 18 and 19 (but not 17 and 20) will crash on the Flowchart sample, because the link routing is set to use avoidsNodes. It's unfortunate but even though they're aware of the bug they aren't going to bother fixing it for FF19.

    https://bugzilla.mozilla.org/show_bug.cgi?id=830063

    ~~~

    By the way, if there are other canvas library authors out there who have had interesting (or downright weird) issues with various canvas implementations, I'd love to hear from you!

  • by daleharvey on 2/17/13, 4:03 AM

    Seems like a reasonable time to self promote

    http://pouchdb.com/

    PouchDB is a full reimplementation of CouchDB inside the browser (using browser storage), you can build applications that work offline then sync your data with 'the cloud'

  • by tomasien on 2/17/13, 4:58 AM

    I know this is a crap answer to this question, but for me what is "cool" is what can easily do things that I think are awesome. For me, that's Angular.js.

    http://angularjs.org/ Angular UI is amazing http://angular-ui.github.com/ And Angular for Bootstrap is also amazing http://angular-ui.github.com/bootstrap/

    I'm not a great programmer, so that's what excites me. It's flexible enough that as you get better as a programmer, you can plug that right in.

    And that's what I think is cool.

  • by shtylman on 2/17/13, 5:24 AM

    http://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.
  • by beefsack on 2/17/13, 5:09 AM

    I'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 next makes life so much easier too.

  • by double051 on 2/17/13, 5:37 AM

    Three.js is a wonderful way to experiment with 3D programming.

    Github repo: https://github.com/mrdoob/three.js/

    Examples: http://mrdoob.github.com/three.js/

  • by straws on 2/17/13, 5:32 AM

    I'm really in love with Component, which is a sort of package manager for front end development

    http://component.jit.su/

    It 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).

  • by agency on 2/17/13, 4:46 AM

    d3.js (http://d3js.org/) is the king of visualization libraries
  • by hayksaakian on 2/17/13, 5:11 AM

    The one that makes everyone's lives easier:

    jQuery.

    Its not sexy, but it gets the job done for pretty much everyone.

  • by byoung2 on 2/17/13, 3:36 AM

    Async: https://github.com/caolan/async - it helps avoid callback hell. I use it in node.js.
  • by davisr on 2/17/13, 4:03 AM

    I'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.
  • by chjj on 2/17/13, 6:05 AM

    This is going to be the most shameless plug I've ever done in my life, but I actually believe my css selector engine ( https://github.com/chjj/zest ) beats every other one into the ground in terms of speed, features, and extensibility. I've probably just been waiting for an opportunity to shout it from the rooftops. Unfortunately, it's kind of hard for a selector engine to gain momentum since people don't really use them standalone unless they're writing a dom library.

    It's not the coolest, but I think it's the coolest selector engine. I'm also totally biased.

  • by danso on 2/17/13, 4:59 AM

    underscore.js has so many useful helper functions while being lightweight and unobtrusive:

    http://underscorejs.org/

  • by kodablah on 2/17/13, 4:17 AM

    TypeScript. 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.
  • by dottrap on 2/17/13, 3:32 AM

    Cappuccino (with Objective-J). One of those, 'so batsh#t crazy, it's brilliant' things. Note they are one of those that make a distinction between a library and framework.

    http://280north.com http://www.cappuccino-project.org http://arstechnica.com/apple/2008/06/cocoa-on-the-web-280-no...

  • by RoboTeddy on 2/17/13, 3:58 AM

    Bacon.js: https://github.com/raimohanska/bacon.js -- functional reactive programming in javascript. It's another way out of callback hell when doing UI work.
  • by rajrao on 2/17/13, 5:20 AM

    My vote is for TypeScript (http://www.typescriptlang.org/). It fixes some of the problems that I encountered while creating an enterprise class application and not being able to strongly type parameters, classes, etc (which meant that I had to open up every JS file to figure out what parameters a function truly required).
  • by charliesome on 2/17/13, 4:33 AM

  • by TallboyOne on 2/17/13, 5:47 AM

    I'm a fan of how well the Ace code editor handles text editing, vim, emacs, etc.

    Non 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/

  • by jpatte on 2/17/13, 10:04 AM

    Knockout (http://knockoutjs.com/) definitely rocked my world. Forget about manipulating the DOM with code (using jQuery or anything): now you have a nice separation between your UI (defined declaratively) and your business logic. Just change some observable values and voila, your UI is updated. I strongly recommend trying the site's tutorial: http://learn.knockoutjs.com

    Also if you like Backbone.js, don't miss Knockback.js (http://kmalakoff.github.com/knockback/). Now you have observable (view)models and collections. Definitely cool.

  • by jakelazaroff on 2/17/13, 6:55 AM

    Every so often, someone writes a tool that makes you (or me, at least) super excited about web development. In 2006, that was jQuery. In 2013, that tool for me is Backbone.

    http://backbonejs.org/

    Just instantiate a model with an endpoint and an ID and Backbone will do all your syncing for you. You can have views listen for changes to the models and update automatically. You can add easy support for client-side navigation via push state.

    Backbone takes tedious tasks and makes them fun. Highly, highly recommended.

  • by goatslacker on 2/17/13, 5:18 AM

    lz is the fastest lazy functional library to work with lists.

    https://github.com/goatslacker/lz

    Why I think it's cool? Well it's really fast, and it's lazy which allows you to work with really big arrays. Plus it's a really tiny library providing you with a streamlined set of APIs for working with lists (similar to array.js/Enumerable)

    If you're working with smaller lists it's probably best to go the lodash route, but if you want it to be lazy then I believe lz is the right tool for the job.

    /shameless plug

  • by aleksandrm on 2/17/13, 6:30 AM

    Check out http://JSDB.io and http://pineapple.io -- both list a ton of cool JS libraries.
  • by jerbils on 2/17/13, 7:02 AM

    Shameless plug time: I built Rekapi, which is a context-agnostic keyframe animation library. That means it works with DOM, Canvas, or whatever you need: http://rekapi.com/

    It also supports exporting JavaScript keyframes to CSS3 @keyframes, as demonstrated with Stylie: http://jeremyckahn.github.com/stylie/

  • by benmanns on 2/17/13, 6:08 AM

    I've been having a lot of fun with https://github.com/harthur/brain (neural network implementation in JavaScript) lately. Perhaps it's not something you would use on a real, live site, but it is fun to prototype neural network stuff in the browser with easy access to the DOM, canvas, and WebGL.
  • by Surio on 2/17/13, 5:03 AM

    Rohan, Pretty difficult to parse "coolest JS library". The "42" for that question came up as "it depends for what" ;-)

    Anyway, I use this site as a quick reference to see what is new in JS world. www.functionn.in The author seems to be pretty meticulous in his updates, so there's a lot of interesting libraries. Seems like a labour of love for him. (P.S: Thanks, Hirvesh)

    There's also Hakim who comes up with some interesting stuff from time to time www.hakim.se

    Here's another that came up on radar lately -- http://soulwire.github.com/Makisu/

    Subscribe to the smashing letter magazine's newsletters for a periodic stream of latest "cool" into your Inbox.

    Hope that helps.

  • by chunkyslink on 2/17/13, 4:46 AM

    http://sugarjs.com/

    From the site

    "Sugar is a Javascript library that extends native objects with helpful methods. It is designed to be intuitive, unobtrusive, and let you do more with less code."

  • by kingkool68 on 2/17/13, 4:58 AM

    I like TinySort which is a no-frills jQuery plugin to sort HTML elements. Great for data tables -> http://tinysort.sjeiti.com/

    Speaking of data tables, I wrote a little function to make table headers sticky so they stay at the top of the viewport as you scroll down a large table. https://github.com/kingkool68/stickyHeader No options, just include on the page, add a class of stickyHeader on the table and you're done.

  • by jgalt212 on 2/18/13, 12:15 AM

    I like sweetjs which brings syntax macros to JavaScript. It hasn't got much traction yet, but I'm convinced someone will do something neat with it.

    http://sweetjs.org/

    An obvious use could be as a library building tool. i.e. All the macros could be restricted to the internal methods used to construct the library DSL. All the public methods could look like standard js, and the library users would be none the wiser to the magic used internally to make the library construction more efficient.

  • by jesusabdullah on 2/17/13, 9:45 AM

    Personally, I think https://github.com/kripken/emscripten/wiki is mind-blowingly amazing. Check out the demos for sure.
  • by olegp on 2/17/13, 9:18 AM

    Shameless plug here but I'd say Common Node is pretty good: https://github.com/olegp/common-node - it lets you write your server using a synchronous style while retaining the low memory usage and quick start up speed of Node.js.

    For example https://starthq.com is using about 35MB of RAM and is easy to debug despite some pretty complex business logic around generating site thumbnails.

  • by xiaoma on 2/17/13, 8:33 AM

    I love underscore. It's basically the first thing I add on any project if I'm not using coffee script. Life is too short for programming everything from the ground up.
  • by cheeaun on 2/17/13, 6:03 AM

    For me, the coolest and most impressive JS lib would be http://lodash.com/
  • by maxtardiveau on 2/17/13, 4:56 AM

    I'd vote for AngularJS. It's just very clever. Kudos to the Google folks who came up with it.
  • by logn on 2/17/13, 4:54 PM

    Not a JS lib but for JS devs CouchDB/CouchApp rocks. Fully JS webapps with no db/app server distinction. Why does no one care about it anymore? Add BigCouch for scalability.
  • by gbog on 2/17/13, 6:43 AM

    https://github.com/dexteryy/OzJS a microkernel for modular javascript. Disc.: writen by a friend and colleague.
  • by The1TrueGuy on 2/17/13, 6:51 AM

    http://famo.us/c/ loved their demo at forbes. Haven't had a moment to do a hands-on with it yet but looks fun.
  • by slater on 2/17/13, 3:32 AM

    Define "cool"? Ease of use? Length of features list? What?
  • by Devlin_Donnelly on 2/18/13, 1:19 AM

    I think impress.js is pretty cool.

    http://bartaz.github.com/impress.js/

  • by readme on 2/17/13, 5:32 AM

    Definitely try hipster.js. It works with node, mongodb, and it runs on plan9. Meteor integration is in the works.
  • by imtu80 on 2/17/13, 4:33 AM

    Check following link and you tell me http://jster.net/.
  • by sasanrose on 2/17/13, 7:28 AM

    htpp://momentjs.com

    A 5.5kb javascript date library for parsing, validating, manipulating, and formatting dates

  • by franze on 2/17/13, 9:40 AM

    box2d-jquery, (note: i mashed, hacked'n'slashed it myself) when it's done it will be an html/dom based (physics) game engine (then it might even be useful), now the feedback i get is just:cool
  • by tjmarshall on 2/17/13, 6:09 AM

    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...?

  • by dotborg on 2/17/13, 8:19 AM

    Dojo Toolkit, amazing build system
  • by trungonnews on 2/17/13, 9:01 AM

    Yui3 over jQuery any day.
  • by dccoolgai on 2/17/13, 4:48 AM

    skrollr is pretty badass, IMO.