Skip to content

Instantly share code, notes, and snippets.

@abarth500
Last active June 27, 2016 09:52
Show Gist options
  • Save abarth500/0a9ddda14d0c9e3b7aab to your computer and use it in GitHub Desktop.
Save abarth500/0a9ddda14d0c9e3b7aab to your computer and use it in GitHub Desktop.
[情報科学実験I] Webサーバの実装
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(8080, '192.168.0.200');
console.log('Server running at http://192.168.0.200:8080/');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment