Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ertrzyiks/ketchup-client
https://github.com/ertrzyiks/ketchup-client
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/ertrzyiks/ketchup-client
- Owner: ertrzyiks
- License: mit
- Created: 2017-07-22T13:20:40.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-10-25T20:48:55.000Z (about 7 years ago)
- Last Synced: 2024-12-15T20:15:57.996Z (about 1 month ago)
- Language: JavaScript
- Size: 10.2 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ketchup-client
## Prerequisite
- Node 6.x
- NPM 5.x
## Communication with ketchup-serverConfigure API and WebSockets endpoints using env variables
```
API_URL='http://localhost:3001'
WS_API_URL='ws://localhost:3001'
```### Development
Install dependencies
```
npm i
```and then start the server
```
npm start
```### Production
```
npm i
npm run build
NODE_ENV=production npm run start:prod
```