我应该在哪里安装node.js?

时间:2011-06-21 14:19:59

标签: node.js centos cpanel whm

我想知道我应该通过执行Wiki中提到的以下命令在CentOS 5 / cPanel服务器上安装node.js的目录:

git clone --depth 1 https://github.com/joyent/node.git
cd node
git checkout origin/v0.4 # optional.  Note that master is unstable.
export JOBS=2 # optional, sets number of parallel commands.
mkdir ~/local
./configure --prefix=$HOME/local/node
make
make install
echo 'export PATH=$HOME/local/node/bin:$PATH' >> ~/.profile
source ~/.profile

请告知。

2 个答案:

答案 0 :(得分:5)

多用户系统的更常规位置是:

/usr/bin/node
/usr/local/bin/node

但正如@Raynos所说,你可以把它放在任何你想要的地方。

答案 1 :(得分:1)

我喜欢使用名为nvm的东西安装最新版本的node.js。

像Raynos一样,你最好使用node v0.4.8而不是开发分支来避免破坏包。