--- layout: container title: Download ---

Latest Code - Master

The tutorials on this website will usually be based on the latest (master) codebase. It should also be very stable.

recline.js (master) »
Single file containing all of Recline library
recline.dataset.js (master) »
Single file with only the core data objects Dataset, Record etc without any Views or backends
Full package (master) »
Everything - library, source code, unit tests, vendor libraries and documentation

Most Recent Official Release – v0.5

recline.js »
Single file containing all of Recline library
recline.dataset.js »
Single file with only the core data objects Dataset, Record etc without any Views or backends
Full package (master) »
Everything - library, source code, unit tests, vendor libraries and documentation

After downloading recline you'll want to use it in your project -- see below or tutorials for details.

### Changelog [View Changelog on Github](https://github.com/okfn/recline#changelog) ### Dependencies Recline has dependencies on some third-party libraries. Specifically, recline.dataset.js depends on: * [Underscore](http://documentcloud.github.com/underscore/) >= 1.0 * [Underscore Deferred](https://github.com/wookiehangover/underscore.deferred) v0.4.0 * [Backbone](http://backbonejs.org/) >= 0.5.1 Those backends which utilize jquery's ajax method depend on jQuery: * [JQuery](http://jquery.com/) >= 1.6 All the views require, in addition to those needed for recline.dataset.js: * [JQuery](http://jquery.com/) >= 1.6 * [Mustache.js](https://github.com/janl/mustache.js/) >= 0.5.0-dev (required for all views) Individual views have additional dependencies such as: * [JQuery Flot](http://www.flotcharts.org/) >= 0.7 (required for for graph view) * [Leaflet](http://leaflet.cloudmade.com/) >= 0.4.4 (required for map view) * [Leaflet.markercluster](https://github.com/danzel/Leaflet.markercluster) as of 2012-09-12 (required for marker clustering) * [Verite Timeline](https://github.com/VeriteCo/Timeline/) as of 2012-05-02 (required for the timeline view) * [Bootstrap](http://twitter.github.com/bootstrap/) >= v3 (default option for CSS and UI JS but you can use your own) If you grab the full zipball for Recline this will include all of the relevant dependencies in the vendor directory and you can also find them at in the [github repo here](https://github.com/okfn/recline/tree/master/vendor). ### Example Here is an example of the page setup for an app using every Recline component: {% highlight html %} {% include recline-deps.html %} {% endhighlight %}