New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

@imrandil/json_to_excel

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@imrandil/json_to_excel

A simple npm package for generating Excel files (xlsx) from JSON arrays.

1.0.1
Version published
Maintainers
1
Created

@imrandil/json_to_excel

A simple npm package for generating Excel files (xlsx) from JSON arrays.

Installation

npm install @imrandil/json_to_excel

Usage

const JsonToExcel = require('@imrandil/json_to_excel');

// Example options
const options = {
  jsonFilePath: 'path/to/your/json/file.json',
  outputFileName: 'output.xlsx',
  batchSize: 100,
  headers: ['Header1', 'Header2', 'Header3'],
  sheetName: 'Sheet1'
};

// Create an instance of JsonToExcel with options
const converter = new JsonToExcel(options);

// Convert JSON data to Excel
converter.convert();

Options

  • jsonFilePath: The file path to the JSON data to be converted.
  • outputFileName: The name of the Excel file to be generated.
  • batchSize: The number of JSON data items to process before writing to the Excel file (default: 100).
  • headers: An array of strings representing the headers for the Excel file.
  • sheetName: The name of the sheet in the Excel file (default: 'Data').

License

MIT

Author

Ali Imran Adil

Repository

GitHub Repository

Bugs

Issue Tracker

FAQs

Package last updated on 07 May 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts