https://github.com/arjunu/bookshelf
https://github.com/arjunu/bookshelf
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/arjunu/bookshelf
- Owner: arjunu
- Created: 2017-08-15T14:55:12.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-08-21T09:15:48.000Z (almost 8 years ago)
- Last Synced: 2025-01-20T16:43:08.292Z (4 months ago)
- Language: JavaScript
- Size: 385 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# bookshelf
## Setup
With the latest version of node & npm, run the following:
```sh
npm i #installs dependencies
npm i -g json-server jest #install CLI dependencies
```### To run development build:
```sh
npm start #starts client server at localhost:5000
npm run server #starts json-server at localhost:3000
```To view the app go to localhost:5000
### Running tests & generating coverage
```sh
npm test
```
### To get production build:```sh
npm run clean #cleans up old coverage & build
npm run build #runs tests & creates public folder
npm run server #starts json-server
```
To view the app go to localhost:3000