Skip to content

Instantly share code, notes, and snippets.

@3rd-Eden
Created April 14, 2014 13:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 3rd-Eden/10647263 to your computer and use it in GitHub Desktop.
Save 3rd-Eden/10647263 to your computer and use it in GitHub Desktop.
'use strict';
var server = require('http').createServer();
server.listen(8083, function () {
var Primus = require('primus')
, primus = new Primus(server);
primus.destroy();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment