CentOS安裝NodeJS及Express開發框架

http://zhaohe162.blog.163.com/blog/static/38216797201402234212981/
 
express 命令行工具
npm install -g express-generator
 
 
 
 
 
安裝過程:
 
 
Step 一、確認服務器有nodejs編譯及依賴相關軟件,若是沒有可經過運行如下命令安裝。

[root@BobServerStation local]# yum -y install gcc gcc-c++ openssl-develnode


Step 二、下載NodeJS源碼包並解壓。

[root@BobServerStation local]# wget http://nodejs.org/dist/v0.10.24/node-v0.10.24.tar.gzc++

[root@BobServerStation local]# tar zxvf node-v0.10.24.tar.gz
[root@BobServerStation local]# cd node-v0.10.24

Step 三、配置、編譯、安裝。

[root@BobServerStation node-v0.10.24]# ./configure --prefix=/usr/local/nodeexpress

[root@BobServerStation node-v0.10.24]# make && make install
將持續3-4min....
 
Step 四、接下來配置Node環境

[root@BobServerStation node-v0.10.24]# vim /etc/profilenpm

 

#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 五、測試是否安裝成功

[root@BobServerStation node-v0.10.24]# node -vvim

v0.10.24瀏覽器

出現NodeJS版本號則表示OK。
 
Step 六、NodeJS之Hello World

[root@BobServerStation node-v0.10.24]# node服務器

> console.log(」Hello NodeJS, I'm Bob.Z「);app

Hello NodeJS, I'm Bob.Z框架

undefined工具

輸出:Hello NodeJS, I'm Bob.Z
 
Step 七、安裝Express開發框架

[root@BobServerStation local]# npm install express -g

 
Step 八、建立Demo項目

[root@BobServerStation local]# express DemoApp

[root@BobServerStation local]# cd DemoApp

[root@BobServerStation DemoApp]# 

 
Step 九、進入項目目錄並安裝項目依賴組件

[root@BobServerStation local]# cd DemoApp

[root@BobServerStation DemoApp]# npm install

 
Step 十、依賴組件安裝完成後啓動app

[root@BobServerStation DemoApp]# node app

Express server listening on port 3000

 
最後經過瀏覽器訪問服務器3000端口,頁面顯示,

Express

Welcome to Express

 
Node + Express成功運行,順利開啓Node開發之旅,enjoy it!
相關文章
相關標籤/搜索