Skip to content

Instantly share code, notes, and snippets.

@0xHexE
Created August 24, 2019 04:17
Show Gist options
  • Save 0xHexE/a25075b5424fd61fe77fe791f2b04e5e to your computer and use it in GitHub Desktop.
Save 0xHexE/a25075b5424fd61fe77fe791f2b04e5e to your computer and use it in GitHub Desktop.
CSV to JSON in NodeJS
// npm i papaparse --save
const FILE_NAME = 'FILE_PATH';
const data = require('papaparse').parse(require('fs').readFileSync(FILE_NAME).toString(), { header: true }).data;
fs.writeFileSync('test.json', JSON.stringify(data));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment