-
Notifications
You must be signed in to change notification settings - Fork 9
JavaScriptLibraries
felixKubicek edited this page Sep 17, 2014
·
4 revisions
- Simple JavaScript Inheritance – a succinct piece of JavaScript by John Resig, that enables classical class-inheritance in JavaScript
- require.js – a JavaScript file and module loader, that enables encapsulation
- jQuery
- jQuery UI – a comprehensive set of widgets; we use it for drag&drop, selections and resizing
- Bootstrap
- LESS – dynamic CSS
- underscore.js – a set of utility functions inspired by functional programming
- jsPlumb – a neat library to visually connect DOM elements; we use it for our graph edges
- Highcharts – interactive JavaScript charts; we use it to display analysis results
Libraries for JavaScript Unit Testing
- Mocha - overall framework we use for writing our JavaScript tests
- Chai jQuery - extends the Chai.js assertion library with jQuery specific assertions
- Sinon.js - library for stubbing, mocking, faking ajax requests, ...