Skip to content

Instantly share code, notes, and snippets.

@toddself
Last active August 29, 2015 14:11
Show Gist options
  • Save toddself/3878809be75ec7848b48 to your computer and use it in GitHub Desktop.
Save toddself/3878809be75ec7848b48 to your computer and use it in GitHub Desktop.
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