Skip to content

Latest commit

 

History

History
48 lines (35 loc) · 947 Bytes

README.md

File metadata and controls

48 lines (35 loc) · 947 Bytes

Nest Logo

CsvUploadBackend

About

Handles the saving and reading of csv files and returns it in json format to the frontend.

Installation

After cloning this project dont forget to install the libraries declared in package.json. Use the following command.

$ npm install

used libraries

  • 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 

Running the app

# development
$ npm run start

# watch mode
$ npm run start:dev

# production mode
$ npm run start:prod

Test

# unit tests
$ npm run test

# e2e tests
$ npm run test:e2e

# test coverage
$ npm run test:cov