xlsx-to-csv-ts

XLSX to CSV

A simple script to convert .xlsx file to .csv file, with the ability to filter / rename columns.

NPM Version GitHub Release npm bundle size MIT License Build Status GitHub Repo stars

Introduction

A simple script to convert .xlsx file to .csv file, with the ability to filter / rename columns.

Install

To install, run the following command in your terminal:

npm install xlsx-to-csv-ts

Usage

Import

To use xlsx-to-csv-ts in your Node.js project, you need to import it as follows:

import { convertXlsxToCsv } from "xlsx-to-csv-ts";

Example

const result = await convertXlsxToCsv({
inputFile: "./public/sample.xlsx",
outputFilename: "sample-filtered",
outputDir: "./public/",
filter: { Segment: "segment", Country: "country" }, // Format: { "original column": "renamed column", ... }
});

console.log(result.outputPath)

Generated using TypeDoc