hnakamur’s blog

ものすごい勢いで忘れる私のために未整理でもいいからとりあえずメモ

2011-09-26

Node.jsで同期的な記述ができるQ-Oper8を試す

参考:
インストール
npm install qoper8 -g

サンプルを試す
git clone https://github.com/robtweed/Q-Oper8.git
cd Q-Oper8
cp examples/qoper8ChildProcess.js ~/local/node/lib/node_modules/qoper8/lib/
mkdir -p ~/node_sandbox/qoper8
cp examples/webQOper8.js examples/qoper8Test.js ~/node_sandbox/qoper8/
cd ~/node_sandbox/qoper8/
npm link qoper8
node webQOper8.js

Scientific Linux 6.0にnode.jsインストール

参考:Building and Installing Node.js - GitHub

python 2.6.6は既に入っていたので、openssl-develをインストール。
sudo yum install openssl-devel

git clone --depth 1 git://github.com/joyent/node.git
git checkout v0.4.12
export JOBS=2
mkdir ~/local
./configure --prefix=$HOME/local/node
make
make install
echo 'export PATH=$HOME/local/node/bin:$PATH' >> ~/.bash_profile
echo 'export NODE_PATH=$HOME/local/node:$HOME/local/node/lib/node_modules' >> ~/.bash_profile
source ~/.bash_profile

npmをインストール
curl http://npmjs.org/install.sh | sh

ブログ アーカイブ