Skip to content

Instantly share code, notes, and snippets.

@ukstudio
Created May 9, 2011 22:34
Show Gist options
  • Save ukstudio/963569 to your computer and use it in GitHub Desktop.
Save ukstudio/963569 to your computer and use it in GitHub Desktop.
server.js for node.js
var http = require('http')
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain; charset=utf-8'});
res.end('みてるー?\n');
}).listen(8124, "127.0.0.1");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment