なにかというと、サーバサイドJavaScriptです。
JavaScriptでサーバ側の処理を作れるっていう素敵なものです!
本家:http://nodejs.org/
では、インストールしてみましょう!
$ wget http://nodejs.org/dist/node-v0.2.3.tar.gz
$ tar zxvf node-v0.2.3.tar.gz
$ cd node-v0.2.3
# sslを使わないので
$ ./configure --without-ssl
# sslを使う場合はオプションなしでOK!
$ make
$ make install
$ tar zxvf node-v0.2.3.tar.gz
$ cd node-v0.2.3
# sslを使わないので
$ ./configure --without-ssl
# sslを使う場合はオプションなしでOK!
$ make
$ make install
インストールに成功したら、、、このサンプルを書いてみましょう!
(といっても本家のexampleをそのまま使っています)
・example.js
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/');
保存したら、あとは実行するだけ!
$ node example.js
実行したら、URLにアクセスする!
http://localhost:8124/
画面に"Hello World"と出力されていればインストールは成功です!
0 件のコメント:
コメントを投稿