
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
@aternus/csv-to-xlsx
Advanced tools
Convert CSV files to XLSX (Excel 2007+ XML Format) files via Node.js CLI or API.
Convert CSV files to XLSX (Excel 2007+ XML Format) files.
Written in JavaScript. Available for Node.js CLI and API.
Binaries are available for:
Install with confidence 🛡️
npm install @aternus/csv-to-xlsx
Download the executables from the latest release.
./csv-to-xlsx-linux -i "input-file-or-directory" -o "output-directory"
Type --help
for a full list of options.
npx @aternus/csv-to-xlsx -i "input-file-or-directory" -o "output-directory"
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());
}
Released under the MIT License - see LICENSE.md
for details.
[3.0.1]
FAQs
Convert CSV files to XLSX (Excel 2007+ XML Format) files via Node.js CLI or API.
We found that @aternus/csv-to-xlsx demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.