0.1.2 • Published 4 years ago

@dangao/node-excel v0.1.2

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

node-excel

excel for nodejs

case

import { Excel } from "@dangao/node-excel";

async function test() {
  const excel = new Excel().toXlsx();
  const headers: ExcelRow = [
    {
      value: "head1",
    },
    {
      value: "head2",
    },
  ];
  const cols: ExcelRow[] = [[{ value: "colA1" }, { value: "colB1" }]];
  const sheet = excel.addSheet("sheet1");

  sheet.rows = [headers, ...cols];

  const zipbuffer = excel.getZip();

  return zipbuffer;
}
0.1.2

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago

0.0.5

4 years ago

0.0.4

4 years ago

0.0.3

4 years ago

0.0.2

4 years ago