Created
March 14, 2013 05:33
-
-
Save YoshihitoAso/5159061 to your computer and use it in GitHub Desktop.
[Node.js]Node.js のインストール方法など(naveで管理)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1) install gcc, gcc-c++ | |
| yum install gcc gcc-c++ | |
| yum install make | |
| yum install openssl-devel | |
| 2) install git | |
| yum install git-core | |
| 3)download nave | |
| git clone git://github.com/isaacs/nave.git | |
| 4) compile | |
| cd nave | |
| ./nave.sh install latest | |
| or | |
| ./nave.sh install 0.4.8 | |
| 5) select node.js version | |
| nave.sh use latest | |
| nave.sh use 0.4.8 | |
| 6) npm install | |
| curl https://npmjs.org/install.sh | sh | |
| *) install express | |
| npm install -g express | |
| *) install socket.io | |
| npm install -g socket.io | |
| *) install ejs | |
| npm install -g ejs | |
| *) install dynode | |
| npm install -g dynode |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment