@costamatheus97/json-to-excel

1.0.6 • Public • Published

Welcome to @costamatheus97/json-to-excel 👋

Version License: MIT Twitter: txpsss

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

Dependencies (1)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i @costamatheus97/json-to-excel

    Weekly Downloads

    1

    Version

    1.0.6

    License

    MIT

    Unpacked Size

    3.71 kB

    Total Files

    5

    Last publish

    Collaborators

    • costamatheus97