node-csvtojson
node-csvtojson copied to clipboard
Blazing fast and Comprehensive CSV Parser for Node.JS / Browser / Command Line.
Bumps [elliptic](https://github.com/indutny/elliptic) from 6.4.0 to 6.5.4. Commits 43ac7f2 6.5.4 f4bc72b package: bump deps 441b742 ec: validate that a point before deriving keys e71b2d9 lib: relint using eslint 8421a01 build(deps): bump...
I am using the below code. It gets stuck at 1197824 rows. Note that, the CSV is 50.3 GB. Current json size is 1.72 GB. I have a 64 GB...
I use your library to prep data for a covid19 charting tool. the source file continues to grow every day. to ensure I minimize space usage, I use the row...
Hi, There seems to be an issue with Async/Await handling. Code below: ``` async function getData() { console.log('logging'); const test = await CSVToJSON().fromFile('./data/hans-puns.csv'); return test; } ``` `const data =...
when I use `fromFile` to read CSV file. In the application some time happened read same file because its interactive program. its simple code. ```javascript module.exports = function() { return...
If I have a csv file with two rows like this: Name,AGE John,23 ---------------------------- When use: csvToJson({trim:true}) .fromFile(filePath) .preFileLine((fileLine,idx)=>{ //Convert csv header row to lowercase before parse csv file to...
Relates to #409.
In a CSV file I use, the value "NULL" is written in some csv cells. I don't want it as string, so I set nullObject to true, but the "NULL"...
Adds another parameter to the custom colParser function callback that exposes the row index being processed. Zero-based. Adds an assert to an existing test to provide coverage. The unit test...
The library uses `fs.createReadStream` to read files when fromFile is called and passes through options, including encoding, to the fs call. This is not obvious, resulting in issue #402. I...