Skip to content

Instantly share code, notes, and snippets.

@ELLIOTTCABLE
Forked from hassox/gist:260853
Created December 21, 2009 08:35
Show Gist options
  • Save ELLIOTTCABLE/260855 to your computer and use it in GitHub Desktop.
Save ELLIOTTCABLE/260855 to your computer and use it in GitHub Desktop.
require('http')
.createServer(function(request, response){
response.sendHeader(200, {'Content-Type' : 'text/plain'});
response.sendBody("zoom");
response.finish();
})
.listen(8000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment