node.js Hello Worldを表示させる
node.js version 0.2.2
node.js インストール]]で[[node.jsをWebサーバーにインストールし終わったら、次はHello Worldを表示させてみます。
次のようなスクリプトを書いて、example.jsという名前でWebサーバーに保存します。
内容は、8124番のポートでこのWebサーバーに接続すると、「Hello World」が表示される、というものです。
var http = require('http'); http.createServer(function (request, response) { response.writeHead(200, {'Content-Type': 'text/plain'}); response.end('Hello World\n'); }).listen(8124); console.log('Server running at http://127.0.0.1:8124/');
サーバー上で、このexample.jsをnodeというコマンドで実行します。
# node example.js
Server running at http://127.0.0.1:8124/
と表示されたでしょうか?
されていれば、動作しています。
これで、このWebサーバーのどこに接続しても、ポート番号8124で接続すれば、「Hello World」と表示されるかと思います。
http://Webサーバーのアドレス:8124/以下任意のパス