Handles the saving and reading of csv files and returns it in json format to the frontend.
After cloning this project dont forget to install the libraries declared in package.json. Use the following command.
$ npm install
- CSVtoJSON to convert csv files to json.
It should be already present in
package.json
, but if it's not there you can always install it like this:
$ npm i --save csvtojson
# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prod
# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov