join-csv

0.1.8 • Public • Published

join-csv

Join CSV allows to join multiple CSV files in order, removing duplicated rows.

Installation

yarn add join-csv # or npm install join-csv 

Usage

join

Joins an array of csv strings, duplicated rows are removed, remaining the ones that appeared early

import { join, joinFiles, joinFilesWithOutput } from "join-csv";
 
const csv1 = `name,price
juice,1000
ice cream,2000
coffee,300`;
 
const csv2 = `name,price
coffee,300
ice,600
something,20000`;
 
console.log(join([csv1, csv2]));
`name,price
juice,1000
ice cream,2000
coffee,300
ice,600
something,20000`;

joinFiles

Same as join but takes an array of paths to the csv files

joinFilesWithOutput

Same as joinFiles but takes a second parameter that specifies a path to save the result of the join

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.1.8
    1
    • latest

Version History

Package Sidebar

Install

npm i join-csv

Weekly Downloads

1

Version

0.1.8

License

MIT

Unpacked Size

529 kB

Total Files

10

Last publish

Collaborators

  • julionav