Created
September 2, 2014 21:24
-
-
Save toddself/780505e6927fe4f34e37 to your computer and use it in GitHub Desktop.
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
var http = require('http'); | |
var express = require('express'); | |
var socketio = require('socket.io'); | |
var app = express(); | |
var server = http.Server(app); | |
var io = socketio(server); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment