A better xlsx lib for read / write / toTable / from Table
$ npm install better-xlsxconst fs = require('fs'); const xlsx = require('better-xlsx'); const file = new xlsx.File(); const sheet = file.addSheet('Sheet1'); const row = sheet.addRow(); const cell = row.addCell(); cell.value = 'I am a cell!'; cell.hMerge = 2; cell.vMerge = 1; const style = new xlsx.Style(); style.fill.patternType = 'solid'; style.fill.fgColor = '00FF0000'; style.fill.bgColor = 'FF000000'; style.align.h = 'center'; style.align.v = 'center'; cell.style = style; file .saveAs() .pipe(fs.createWriteStream('test.xlsx')) .on('finish', () => console.log('Done.'));- xlsx parser
- read excel file
- write excel file
- transform html table to excel file html2xlsx
- http://www.ecma-international.org/publications/standards/Ecma-376.htm
- https://github.com/tealeg/xlsx
This project exists thanks to all the people who contribute. [Contribute].
Thank you to all our backers! 🙏 [Become a backer]
Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [Become a sponsor]
better-xlsx is available under the terms of the MIT License.