Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/boristane/blog-api
The API for my blog, art portfolio and projects page.
https://github.com/boristane/blog-api
Last synced: about 9 hours ago
JSON representation
The API for my blog, art portfolio and projects page.
- Host: GitHub
- URL: https://github.com/boristane/blog-api
- Owner: boristane
- Created: 2018-10-19T13:04:12.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-23T21:57:06.000Z (about 2 years ago)
- Last Synced: 2023-03-05T17:50:47.483Z (almost 2 years ago)
- Language: JavaScript
- Homepage:
- Size: 1.23 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 28
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# blog-api
The API for my blog, art portfolio and projects page.## Install
```bash
npm i
```## Run
```bash
npm start
```## Testing
There are three commands for running the tests.
**Please make sure the server is not running before running the tests.**
### Regular testing
```bash
npm run test
```
This will run all the testing suites and print the result in the command line.### Continious Integration testing
```bash
npm run test-ci
```
This will run the testing for Continious Integration. In addition to the command line print of the test results, reports will be produced for the coverage and the testing results in machine readable format.The reports are found in the folders `coverage` and `reports`.
### Recent files testing
```bash
npm run test-changed
```
This will run tests only for the files changed since the last commit.