1.0.7 • Published 5 years ago

xls-write v1.0.7

Weekly downloads
21
License
MIT
Repository
-
Last release
5 years ago

json2excel

Quick start

Install

npm install xls-write

Example

const jexcel = require('./index');
const path = require('path');
const filename = Date.now() + '.xlsx';
var data = {
  sheets: [
    {
      header: [{ author: 'mapName' }, { title: 'maptitle' }],
      items: [
        {
          author: 'icezeros',
          title: 'how to use this',
        },
        {
          author: 'ice',
          title: 'so Easy',
        },
      ],
      sheetName: 'sheet1',
    },
  ],
  filepath: path.join(__dirname, filename),
};
//
jexcel.writeXlsx(data);
1.0.7

5 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

7 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago