This repository has been archived by the owner on Jan 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
V2.2 commit: Added Realtime Updating to Talks
I'm using Socket.io to handle the websockets that manage the message passing between clients
- Loading branch information
Showing
7 changed files
with
7,319 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"parserOptions": { | ||
"ecmaVersion": 6 | ||
}, | ||
"rules": { | ||
"curly": [2, "all"] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,28 @@ | ||
{ | ||
"name": "node-talks", | ||
"version": "1.0.0", | ||
"description": "A clone of the COSI talks flask app", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"author": "Benjamin Lannon", | ||
"license": "MIT", | ||
"dependencies": { | ||
"body-parser": "^1.15.0", | ||
"express": "^4.13.4", | ||
"gulp": "^3.9.1", | ||
"gulp-jshint": "^2.0.0", | ||
"gulp-sass": "^2.3.1", | ||
"insubnet": "0.0.8", | ||
"jshint": "^2.9.1", | ||
"jshint-stylish": "^2.1.0", | ||
"morgan": "^1.7.0", | ||
"promise": "^7.1.1", | ||
"pug": "^2.0.0-alpha7", | ||
"request-ip": "^1.2.2", | ||
"sequelize": "^3.19.3", | ||
"sqlite3": "^3.1.1" | ||
} | ||
"name": "node-talks", | ||
"version": "1.0.0", | ||
"description": "A clone of the COSI talks flask app", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"author": "Benjamin Lannon", | ||
"license": "MIT", | ||
"dependencies": { | ||
"body-parser": "^1.15.0", | ||
"express": "^4.13.4", | ||
"gulp": "^3.9.1", | ||
"gulp-jshint": "^2.0.0", | ||
"gulp-sass": "^2.3.1", | ||
"insubnet": "0.0.8", | ||
"jshint": "^2.9.1", | ||
"jshint-stylish": "^2.1.0", | ||
"morgan": "^1.7.0", | ||
"promise": "^7.1.1", | ||
"pug": "^2.0.0-alpha7", | ||
"request-ip": "^1.2.2", | ||
"sequelize": "^3.19.3", | ||
"socket.io": "^1.4.8", | ||
"sqlite3": "^3.1.1" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.