nodeでhelloworldしようとして、つまづいていた点をまとめる。まだすっきりしないけれど… Ubuntuで80番ポートでサーバーが立ち上がらない nodeのサイトにあったサンプルプログラムを起動すると。 var http = require('http'); http.createServer(function (req, res) { res.writeHead(200, {'Content-Type': 'text/plain'}); res.end('Hello World\n'); }).listen(80, "192.0.2.0"); console.log('Server running at http://192.0.2.0:80/'); エラー。 $ node hello.js Server running at http://192.0.2.0:80/ node