Mac、Ubuntu、CentOSおよびWindowsでNode.jsをインストール

1.Mac
1.1 homebrewでインストール
brew install node

1.2 手動でインストール
Xcodeをインストール
gitをインストール
次のコマンドラインを実行してコンパイルする
git clone git://github.com/joyent/node.git
cd node
./configure
make
sudo make install

2.Ubuntu
依存パッケージをインストール
sudo apt-get install g++ curl libssl-dev apache2-utils
sudo apt-get install git-core

次のコマンドを実行
git clone git://github.com/joyent/node.git
cd node
./configure
make
sudo make install

3.Windows
3.1 cygwinをインストール
3.2  cygwinディレクトリのsetup.exeを実行して次のパッケージをインストール
devel → openssl
devel → g++-gcc
devel → make
python → python
devel → git

3.3 cygwinを実行
3.4 次のコマンドを実行
git clone git://github.com/joyent/node.git
cd node
./configure
make
sudo make install
4.CentOS

yum install gcc-c++ openssl-devel
wget –no-check-certificate https://github.com/joyent/node/tarball/v0.3.3
tar -xzvf ry-node-v0.3.3-0-g57544ba.tar.gz
cd ry-node-v0.3.3-0-g57544bac1
./configure
make
make install
5.検証テスト
startnews24_node.js
var http = require('http’);
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type’: 'text/plain’});
res.end('arkgame.comn’);
}).listen(8124, “127.0.0.1");
console.log('Server running at http://127.0.0.1:8124/’);

コードを実行
node hello_node.js
Server running at http://127.0.0.1:8124/

IOS

Posted by arkgame