1.0.6 ā€¢ Published 2 years ago

@costamatheus97/json-to-excel v1.0.6

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

Generate an excel file or workbook from your json data

Install

yarn install @costamatheus97/json-to-excel

Usage

  • Generating an Excel file
const { createLocalFile } = require("@costamatheus97/json-to-excel");

await createLocalFile("path/to/folder", "workbook-name", [
  {
    name: "Matheus",
    age: 25,
  },
  {
    name: "Joseph",
    age: 54,
  },
]);
  • Generating an Excel Workbook
const { createWorkbook } = require("@costamatheus97/json-to-excel");

const workbook = await createWorkbook("workbook-name", [
  {
    name: "Matheus",
    age: 25,
  },
  {
    name: "Joseph",
    age: 54,
  },
]);

Author

šŸ‘¤ Matheus Costa

šŸ¤ Contributing

Contributions, issues and feature requests are welcome!Feel free to check issues page.

Show your support

Give a ā­ļø if this project helped you!


This README was generated with ā¤ļø by readme-md-generator

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago