Skip to content

Latest commit

 

History

History
57 lines (41 loc) · 662 Bytes

README.md

File metadata and controls

57 lines (41 loc) · 662 Bytes

Statscore Matches

Simple app that maps and filters data after initiation

Example

It changes object:

{
  sport: 'volleyball',
  participant1: 'Germany',
  participant2: 'France',
  score: '3:0,25:23,25:19,25:21',
}

into:

{
  name: 'Germany - France',
  score: 'Main score: 3:0 (set1 25:23, set2 25:19, set3 25:21)'
}

Installation

$ npm install

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