Mac Mac では、homebrew を使用したい場合は、たった 1 行でインストールできます:
brew install node
それ以外の場合は、手動インストールを検討できます。手順は次のとおりです。
Xcode をインストールします
git をインストールします
次のコマンド ラインを実行して、node.js をコンパイルします
git clone git://github.com/ry/node.git
cd node
。 /configure
make
sudo make install
Ubuntu 依存関係パッケージのインストール
sudo apt-get install gcurl libssl-dev apache2-utils
sudo apt-get install git-core
次のコマンドラインを実行します:
git clone git://github.com/ry/node.git
cd node
./configure
make
sudo make install
Windows cygwin を使用してノードをインストールします。 手順は次のとおりです。
cygwin をインストールします
cygwin ディレクトリ内setup.exe を実行して、以下のリストにあるパッケージをインストールします
devel → openssl
devel → g -gcc
devel → make
python → python
devel → git
run cygwin
次のコマンド ラインを実行します:
git clone git://github.com/ry/node.git
cd node
./configure
make
sudo make install
Centos
yum install gcc-c openssl- devel
wget --no-check-certificate https://github.com/ry /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
Hello Node.js! hello_node.js などの小さなプログラムを作成して、インストールが正しいかどうかを確認します。
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content -Type': 'text/plain'});
res.end('Hello Node.jsn')
}).listen(8124, "127.0.0.1"); ('http://127.0.0.1:8124/ で実行されているサーバー');
このコードを実行するにはノードを使用します
node hello_node.js
http://127.0.0.1:8124/ で実行されているサーバー
次に、ブラウザで http://127.0.0.1:8124/ を開くと、適切なメッセージが表示されるはずです。