An open API service indexing awesome lists of open source software.

https://github.com/rafaelcamargo/woover

World news headlines
https://github.com/rafaelcamargo/woover

headlines news world

Last synced: 9 months ago
JSON representation

World news headlines

Awesome Lists containing this project

README

          

# Woover
> World news headlines

[![CircleCI](https://circleci.com/gh/rafaelcamargo/woover/tree/master.svg?style=svg)](https://circleci.com/gh/rafaelcamargo/woover/tree/master)
[![codecov](https://codecov.io/gh/rafaelcamargo/woover/branch/master/graph/badge.svg)](https://codecov.io/gh/rafaelcamargo/woover)

## Contributing

1. Install [Node](https://nodejs.org/en/). Download the "Recommend for Most Users" version.

2. Clone the repo:
``` bash
git clone git@github.com:rafaelcamargo/woover.git
```

3. Go to the project directory
``` bash
cd woover
```

4. Install the project dependencies
``` bash
npm install
```

5. If you want to just build the project, run:
``` bash
npm run build
```

6. Otherwise, run:
``` bash
npm run start
```

The app will be running on `http://localhost:8080`.

## Tests

1. Ensure that all code that you have added is covered with unit tests:
``` bash
npm run test
```

2. You can optionally generate coverage report after running tests:
``` bash
npm run test -- --coverage
```