# csv-merge **Repository Path**: mirrors_mikeal/csv-merge ## Basic Information - **Project Name**: csv-merge - **Description**: Merge two CSV files together - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-09 - **Last Updated**: 2025-09-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # csv-merge Takes two CSV files with identical columns and writes the last column to new names in a new csv file. ```javascript const fs = require('fs') const read = fs.readFileSync const f1 = '../npm-regressions/2019-02---2019-02/depOwnersPerMonth.csv' const f2 = '../npm-regressions/2019-02---2019-02/ownerReleasesByMonth.csv' const string = merge(read(f1), read(f2), 'dependedOn', 'releases') console.log(string) // string of the new csv ```