csvstrom
v0.2.0
Published
Streaming CSV to JSON converter
Downloads
12
Readme
CSVStrom
Streaming CSV to JSON converter. Works well for large files.
CLI is included.
Install
# For use programmatically
npm i csvstrom
# Use from command line
npm i -g csvstrom
Usage
Programmatically:
const csvstrom = require('csvstrom')
// Returns the number of lines processed
const { count } = await csvstrom('codes.csv', 'codes.json')
Command line usage:
csvstrom inputfile.csv [outputfile.json]
WTFPL Licensed. Enjoy!