Created
April 14, 2014 13:21
-
-
Save 3rd-Eden/10647263 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
'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