Node.js インストールログ
WebSocket とか試してみたくなったので Node.js とか色々インストールしてみた。そのログ。
環境は、
- Mac OS X 10.6
- MacPorts 1.9.2
インストールしたものは、
Node.js のインストール。
[yuanying@Leaf] ~
$ sudo port install nodejs
[yuanying@Leaf] ~
$ node -v
v0.2.2
npm のインストール
/opt/local の下のパーミッションを変えるのが推奨だよとかいわれたので、よくわからんけどパーミッションを変えてインストール。
[yuanying@Leaf]
$ sudo chmod -R g+w /opt/local/
Password:
[yuanying@Leaf]
$ curl http://npmjs.org/install.sh | sh
[yuanying@Leaf] ~
$ npm -v
0.2.16
express と Socket.IO のインストール
[yuanying@Leaf]
$ npm install express
[yuanying@Leaf]
$ npm install socket.io
ふむ…。とりあえず以上。遊ぶのは明日。