Just include recline.backend.xlsx.min.js in your html. See dependencies bellow.
<script type"text/javascript" src="dist/recline.backend.xlsx.min.js"></script>
;(function($) {
'use strict';
$(document).on('ready', function(){
var backend = {
backend: 'xlsx',
url: 'data/example.xlsx',
sheet: 'apollo-parsed-1737-325_0'
};
Excel.fetch(backend).done(function(data){
console.log(data);
});
});
})(jQuery);
- underscore or lodash
- SheetJS
- underscore.deferred (optional) - only needed if no jQuery
- NodeJS
- NPM
- Bower
- Make
- Install Grunt globally
npm install -g grunt-cli
- Install node packages
npm install
- Install bower packages
bower install
- Run server
grunt
- Make a build
grunt build
- Lint code
grunt lint