1.2.5 • Published 7 years ago

json2xlsxexport v1.2.5

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

json2xlsxexport

Lightweight in browser .xlsx exporter.

How it use

import json2xlsx from 'json2xlsxexport';

let xlsx = {
  filename: 'AwesomeFile',
  sheets: [{
    name:"First sheet",
    data: [
      [{
        value: 'Line1',
        type: 'string'
      },{
        value: 'Line2',
        type: 'string'
      }, {
        value: 1000,
        type: 'number'
      }]
    ]
  },
  {
    name:"Second sheet",
    data: [
      [{
        value: 'First',
        type: 'string'
      },{
        value: 'Second',
        type: 'string'
      }]
    ]
  }]
};

json2xlsx(xlsx);
1.2.5

7 years ago

1.2.4

7 years ago

1.0.4

7 years ago

1.2.1

8 years ago

1.2.0

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago