node-csvtojson icon indicating copy to clipboard operation
node-csvtojson copied to clipboard

Blazing fast and Comprehensive CSV Parser for Node.JS / Browser / Command Line.

Results 135 node-csvtojson issues
Sort by recently updated
recently updated
newest added

Reading CSV files from URL seems like a feature that should be supported. Can't seem to find it

Because the latest version of this library is incompatible with the angular version 8.3.19 I have replaced bluebird with native promises as proposed in #339. @Keyang please review the changes...

Hello! I use npm only without webpack and other. I need to use csvtojson to convert csv in my app, but it dont works. I become this error: Error: Cannot...

I want to be able to validate the headers of an uploaded file by uppercasing and replacing spaces in order to provide a forgiving user experience. and then proceed to...

Bumps [tmpl](https://github.com/daaku/nodejs-tmpl) from 1.0.4 to 1.0.5. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tmpl&package-manager=npm_and_yarn&previous-version=1.0.4&new-version=1.0.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

CSV File Line Hook how to tell to ignore or skip based on return value? I'm parsing a CSV to json and i want to ignore lines based on a...

I have done this: ``` npm i csvtojson -D npm i @types/csvtojson -D ``` In my typescript file: ``` import * as csvtojson from 'csvtojson; csvtojson().fromFile(csvFilePath) ``` In my console:...

Hello, `.preFileLine((fileLineString, lineIdx)=>{` ` if (lineIdx === 0){` ` return fileLineString.replace(/ /g,'')` ` }` ` return fileLineString` `})` I'm using preFileLine() to remove spaces in CSV column headers. For example:...