@aternus/csv-to-xlsx
TypeScript icon, indicating that this package has built-in type declarations

2.1.5 • Public • Published

@aternus/csv-to-xlsx

Convert CSV files to XLSX (Excel 2007+ XML Format) files.

Written in JavaScript. Available for Node.js CLI and API.

Binaries are available for:

  • Windows x64
  • Linux x64
  • MacOS x64

validate

Install with confidence 🛡️

Features

  • Binaries - download and run via your OS's command-line utility
  • Fast and Reliable
  • Full UTF-8 support
  • CSV Column detection
  • Batch mode - convert a CSV folder to an XLSX folder
  • Node.js CLI and API

Installation

npm install @aternus/csv-to-xlsx

Usage

Binaries

Download the executables from the latest release.

./csv-to-xlsx-linux -i "input-file-or-directory" -o "output-directory"

Node.js CLI

Type --help for a full list of options.

npx @aternus/csv-to-xlsx -i "input-file-or-directory" -o "output-directory"

Node.js API

const path = require('path');
const {convertCsvToXlsx} = require('@aternus/csv-to-xlsx');

let source = path.join(__dirname, 'report.csv');
let destination = path.join(__dirname, 'converted_report.xlsx');

try {
  convertCsvToXlsx(source, destination);
} catch (e) {
  console.error(e.toString());
}

License

Released under the MIT License - see LICENSE.md for details.

Package Sidebar

Install

npm i @aternus/csv-to-xlsx

Weekly Downloads

2,988

Version

2.1.5

License

MIT

Unpacked Size

11.8 kB

Total Files

10

Last publish

Collaborators

  • kirilreznik