A pure JavaScript CSV parser that transforms takes a CSV as a string as input and returns a JavaScript multidimensional array representing rows and columns as output.
- For in-browser parsing, IE 11+ for FileReader support, if reading CSV from an uploaded file
- Jasmine, to run tests
- npm and gulp to build
- install gulp with
sudo npm install -g gulp
if you have not already done so - type
npm install
to install dependencies - type
gulp
to build node and browser versions
- To run tests, install Jasmine by typing
sudo npm install -g jasmine
- Run tests by typing
npm test
CSV Parser is released under the MIT License. See license.txt for more details.