サーバサイドjavascript実装のnode.jsを試してみる。
インストール手順は以下のページに記載されている。
https://github.com/ry/node/wiki/Installation
1.node.jsのインストール
[code]
# cd /usr/local/src
# wget http://nodejs.org/dist/node-v0.4.0.tar.gz
# tar zxvf node-v0.4.0.tar.gz
# cd node-v0.4.0
# ./configure
# make
# make install
[/code]
2.NPM ( Node Package Manager )のインストール
さすがに、ネットワークからダウンロードしたシェルスクリプトをそのまま実行するのは怖いので、内容を確認して実行。
[code]
# curl http://npmjs.org/install.sh > npm-install.sh
# less npm-install.sh
# sh npm-install.sh
[/code]
あとは必要なプログラムを npm searchで探し、npm installでインストールする。
今回はサンプルを実行してみる。
[code]
$ mkdir sample
$ cd sample/
$ vi server.js
var http = require(‘http’);
http.createServer(function (request, response) {
response.writeHead(200, {‘Content-Type’: ‘text/plain’});
response.end(‘Hello World\n’);
}).listen(8080);
console.log(‘Server running at http://www.furelo.jp:8080/’);
$ node server.js
[/code]