-
When piping a fs ReadStream object into the csvtojson Converter with the following large CSV file (5291 lines), only the first 4259 lines trigger record_parsed events. The Converter seems to stop afte…
-
- NodeJS version: v0.10.22
- csvtojson version: 0.3.8 (also 0.3.11)
- Mac OS version: 10.9.4
- The exception is thrown when the application receives empty csv file. The exception is as follows:
und…
-
Some of the spacing appears odd in the descriptions: e.g. - A designated Arizona Treasurethis farm offers a year-round variety of u-pick organic vegetables as well as toursfestivalsvarious markets,and…
-
@Keyang I'm getting a weird issue where quoted csv text like
`"Many types of citrus are available, including oranges, white grapefruit, tangelos, and lemons."`
when converted into json looks like
`"…
-
I have been getting the following error while using this module tonight. The relevant code is below the error. The error comes when, after a converted page is rendered, i go to a second url to render …
-
After an npm install, I still get:
Dans-iMac:~ dmcgarry$ cd devel/candy-basket/backend/
Dans-iMac:backend dmcgarry$ node app/app.js
module.js:340
throw err;
^
Error: Cannot find modul…
-
There are some wrong indices in the csvtojson script, so the output is somehow garbled. I'll work on it.
hkopp updated
10 years ago
-
Hi!
I'm trying to convert a CSV to JSON.
Text value _BEFORE_ to convert:
- "O FUTEBOL.¿"
- " emoção"
The same value _AFTER_ convertion:
- "O FUTEBOL.\ufffd"
- " emo\ufffd\ufffdo"
There's an option t…
-
this npm package
https://www.npmjs.org/package/csvtojson
allows more sophisticated csv "structured" data so you can nested sub-documents encoded in csv. it would be great if your parser would be writ…
dcsan updated
10 years ago
-
```
csvtojson.on("record_parsed",function(resultRow,rawRow,rowIndex){
console.log(resultRow); // logs 1 instead of 0
process.exit();
});
```