Initial commit
parents
Showing
+552 -0
.gitignore
0 → 100644
README.md
0 → 100644
package.json
0 → 100644
{ | |||
"name": "@cs11-async/chat-server", | |||
"version": "1.0.0", | |||
"description": "CS 11 Asynchronous Programming - Chat server", | |||
"scripts": { | |||
"test": "ava --verbose tests/test.js" | |||
}, | |||
"repository": { | |||
"type": "git", | |||
"url": "git@gitlab.caltech.edu:cs11-async/chat-server.git" | |||
}, | |||
"license": "MIT", | |||
"devDependencies": { | |||
"ava": "^3.5.0" | |||
} | |||
} |
server.js
0 → 100644
tests/test.js
0 → 100644
tests/util.js
0 → 100644
Please register or sign in to comment