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

@aternus/csv-to-xlsx

Package Overview
Dependencies
Maintainers
1
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aternus/csv-to-xlsx

Command-line tool and a Node.js library to convert CSV files to XLSX (Excel 2007+ XML Format) files.

  • 1.0.3
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2.9K
decreased by-18.9%
Maintainers
1
Weekly downloads
 
Created
Source

@aternus/csv-to-xlsx

Command-line tool to convert CSV files to XLSX (Excel 2007+ XML Format) files written in JavaScript.

Precompiled binaries (see the bin folder) are available for:

  • Windows x64
  • Linux x64
  • MacOS

Installation

npm install @aternus/csv-to-xlsx

Usage

Precompiled Binary (Command-line)

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

Node.js CLI

Type --help for a full list of options.

npx csv-to-xlsx -i "input-directory" -o "output-directory"

Node.js

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

let source = path.join(__dirname, 'SalesJan2009.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.

Keywords

FAQs

Package last updated on 17 Sep 2018

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc