0.0.2 • Published 7 years ago

xlsx-writer-stream v0.0.2

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

xlsx-writer-stream

A xlsx writer by stream in Node.js

Installation

$ npm install xlsx-writer-stream

Example

var XLSXWriterStream = require('xlsx-wirter-stream');

var writer = new XLSXWriterStream({
    file: 'example.xlsx'
});

// Optional: Adjust column widths
writer.defineColumns([
    { width: 20 },
    { width: 10 }
]);

// Optional: Set cell map title
writer.setCellMap(['name', 'value']);

// Add some simple rows
writer.addRow(['pauky', 'ykk']);
writer.addRow(['glowry', 'yrw', 'test']);

// Add multiple rows
writer.addRows([['1', '2'],['a', 'b']]);

// Finalize the spreadsheet. If you don't do this, the readstream will not end.
writer.finalize();

License

MIT