CentOSインストールNodeJSとExpress開発フレーム

2305 ワード

具体的なインストールプロセスは以下の通りです.
Step 1、確認サーバにnodejsのコンパイルおよび依存ソフトウェアがありますが、以下のコマンドを実行してインストールできない場合.
[root@BobServerStation local]# yum -y install gcc gcc-c++ openssl-devel 
Step 2、NodeJSのソースバッグをダウンロードし、解凍する
[root@BobServerStation local]# wget http://nodejs.org/dist/v0.10.24/node-v0.10.24.tar.gz  
[root@BobServerStation local]# tar zxvf node-v0.10.24.tar.gz  
[root@BobServerStation local]# cd node-v0.10.24  
Step 3、配置、コンパイル、インストール.
[root@BobServerStation node-v0.10.24]# ./configure --prefix=/usr/local/node  
[root@BobServerStation node-v0.10.24]# make && make install  
Step 4、次にNode環境を設定する
[root@BobServerStation node-v0.10.24]# vim /etc/profile 
set nodejs env
export NODE_HOME=/usr/local/node  
export PATH=$NODE_HOME/bin:$PATH  
export NODE_PATH=$NODE_HOME/lib/node_modules:$PATH    
[root@BobServerStation node-v0.10.24]# source /etc/profile
--    
Step 5、テストがインストールされましたか?
[root@BobServerStation node-v0.10.24]# node -v  
v0.10.24  
NodeJSバージョンが出たらOKです.
Step 6、NodeJSのハローワールドを出力する
[root@BobServerStation node-v0.10.24]# node
> console.log(”Hello NodeJS, I'm Bob.Z“);
Hello NodeJS, I'm Bob.Z
undefined
>
出力:ハローNodeJS,I'm Bob.Z
Step 7、Express開発フレームのインストール
[root@BobServerStation local]# npm install express -g  
Step 8、Demo項目の作成
[root@BobServerStation local]# express DemoApp  
[root@BobServerStation local]# cd DemoApp  
[root@BobServerStation DemoApp]#   
Step 9、プロジェクトディレクトリに入り、プロジェクト依存コンポーネントをインストールする
[root@BobServerStation local]# cd DemoApp  
[root@BobServerStation DemoApp]# npm install
Step 10、依存部品npmをインストールする場合、エラーが発生したら、次のコマンド(npm国内ミラー)を実行してください.
方法1:config命令でnpm config set registryhttp://registry.cnpmjs.org npm info under score(上に正しい配置があれば文字列reponseがあります)の方法の一つ:コマンドライン指定npm--registryhttp://registry.cnpmjs.org info undersscore方法3:編集~/.npmrcは下記の内容registryに参加します.http://registry.cnpmjs.org Step 11、モジュールに依存してインストールが完了したら、アプリを起動します.
[root@BobServerStation DemoApp]# node app  
Express server listening on port 3000  
最後にブラウザを通じてサーバ3000ポートにアクセスし、ページ表示を行います.Express Welcome to Express