Skip to content

Instantly share code, notes, and snippets.

@TooTallNate
Created March 12, 2012 19:01
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 TooTallNate/d9f15b31b60b09b84e54 to your computer and use it in GitHub Desktop.
Save TooTallNate/d9f15b31b60b09b84e54 to your computer and use it in GitHub Desktop.
// this don't work :(
var repl = require('repl')
var net = require('net')
net.createServer(function (socket) {
socket.isTTY = true
repl.start('socket repl > ', socket)
}).listen(1337)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment