Ask HN: What is the coolest JS library out there?
51–60 of 95 posts
Re: Ask HN: What is the coolest JS library out there?
#52Just 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.
Re: Ask HN: What is the coolest JS library out there?
#53d3.js ( http://d3js.org/ ) is the king of visualization libraries
Re: Ask HN: What is the coolest JS library out there?
#54It also supports exporting JavaScript keyframes to CSS3 @keyframes, as demonstrated with Stylie: http://jeremyckahn.github.com/stylie/
Re: Ask HN: What is the coolest JS library out there?
#55The one that makes everyone's lives easier: jQuery. Its not sexy, but it gets the job done for pretty much everyone.
Re: Ask HN: What is the coolest JS library out there?
#56(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…
Re: Ask HN: What is the coolest JS library out there?
#57Seems 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'
Re: Ask HN: What is the coolest JS library out there?
#58I 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.
Re: Ask HN: What is the coolest JS library out there?
#59A 5.5kb javascript date library for parsing, validating, manipulating, and formatting dates
Re: Ask HN: What is the coolest JS library out there?
#60(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…