Skip to content

infroz/xlsx4js

Repository files navigation

PNPM INSTALL & BUILD Node.js Package

XLSX4JS

This project is in its early stages of development, if you have find bugs or have suggestions please create an issue or fork the project to create pull-reqest.

How to use

// Create a workbook
const workbook = createWorkbook({ name: "My Workbook" });

// Create a sheet
const sheeet = createWorksheet(
  [
    { someInteger: 123, someString: "My Value1" },
    { someInteger: 456, someString: "My Second Value1" },
  ]
);

// Add the sheet to your book
workbook.addSheet(sheeet);

// Write the file, currently using node's fs
workbook.write();

About

No description or website provided.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published