Simple app that maps and filters data after initiation
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)'
}
$ npm install
# 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