json-to-excel

1.0.1 • Public • Published

json-to-excel

fork from rikkertkoppes/json2xls

Different

  • cols add width property
  • delete express middleware cause i use koajs

Usage

Download the json data as excel file.

    var router = require('koa-router')();
    router.get('/download', function* (){
        var xls = json2xls(results);
        this.type = 'application/vnd.openxmlformats';
        this.set('Content-Type', 'application/vnd.openxmlformats');
        this.set("Content-Disposition", "attachment; filename= download-json-to-excel.xlsx");
        var buffer = new Buffer(xls,'binary');
        this.body = buffer;
    });

Readme

Keywords

Package Sidebar

Install

npm i json-to-excel

Weekly Downloads

20

Version

1.0.1

License

ISC

Last publish

Collaborators

  • qixin1991