node.js
インストール
ソースコードからインストールします。
$ cd /usr/local/src/ $ sudo wget http://nodejs.org/dist/node-v0.2.5.tar.gz $ cd node-v0.2.5 $ sudo ./configure $ sudo make $ sudo make install $ node -v v0.2.5
できました。
サンプルを動かす
以下のコードをhelloworld.jsというファイル名で保存
var http = require('http'); http.createServer(function (req, res) { res.writeHead(200, {'Content-Type': 'text/plain'}); res.end('Hello World\n'); }).listen(8124, "127.0.0.1"); console.log('Server running at http://127.0.0.1:8124/');
下記コマンドを実行するとサーバとして起動します。
$ sudo node helloworld.js Server running at http://127.0.0.1:8124/
curlでアクセスしてみます。
$ curl localhost:8124 Hello World
動いた!