Last active
August 29, 2015 14:11
-
-
Save toddself/3878809be75ec7848b48 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 socketio = require('socket.io'); | |
var express = require('express'); | |
var http = require('http') | |
var app = express(); | |
var server = http.Server(app); | |
var io = socketio(server); | |
app.listen(3000); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment