https://github.com/vzhou842/cos-333-project
Robin, a project for COS 333.
https://github.com/vzhou842/cos-333-project
Last synced: about 2 months ago
JSON representation
Robin, a project for COS 333.
- Host: GitHub
- URL: https://github.com/vzhou842/cos-333-project
- Owner: vzhou842
- Created: 2017-03-29T14:37:47.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-05-15T02:30:50.000Z (over 8 years ago)
- Last Synced: 2025-04-04T22:41:32.024Z (7 months ago)
- Language: Swift
- Homepage:
- Size: 3.26 MB
- Stars: 2
- Watchers: 7
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Robin
A COS 333 (Spring 2017) project.Team Members:
- Angela Mao
- Jose Rodriguez
- Andre Xiong
- Sarah Zhou
- Victor ZhouProject Status Site: [https://vzhou842.github.io/BringBackTheYak/](https://vzhou842.github.io/BringBackTheYak/)
# Server
Make sure you have Node.js and NPM installed.
You can test if you have them using `node -v` and `npm -v`. You should get something like:
```
$ node -v
v6.9.2
$ npm -v
3.10.9
```First, install server dependencies:
```
$ cd server/
$ npm install
```Start the server using:
```
$ npm start
```Run server tests using:
```
$ npm test
```# API
See [server/API.md](server/API.md) for the API reference.