1.0.7 • Published 6 years ago

xls-write v1.0.7

Weekly downloads
21
License
MIT
Repository
-
Last release
6 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

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

8 years ago

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago