红联Linux门户
Linux帮助

fedora22搭建node.js服务器环境

发布时间:2015-08-23 09:32:06来源:linux网站作者:解放AI思想

由于fedora22有node.js的安装源,所以使用dnf一句话安装

dnf install nodejs 

备注:dnf是fedora22对yum的替代


由于使用到了Express,所以最好也安装上npm,Express的网址:http://www.expressjs.com.cn

dnf install npm 


永久依赖安装Express

npm install express --save 


应用测试demo

var http = require('http'); 
http.createServer(function (req, res) { 
res.writeHead(200, {'Content-Type': 'text/plain'}); 
res.end('Hello Node.js\n'); 
}).listen(3000); 


访问服务器的3000端口,获得一个返回字符串:Hello Node.js

turnserver服务器下载地址

http://turnserver.open-sys.org/downloads/


用于支持穿透服务架设

公共传统服务器:

stun.ideasip.com

stun.iptel.org

stun.voxgratia.org


未测试以下

stun.voipstunt.com

stun.voipbuster.com


Ubuntu 15.04下安装Node.JS的不同方式:http://www.linuxdiyf.com/linux/12839.html

如何在CentOS 7安装Node.js:http://www.linuxdiyf.com/linux/8610.html

Ubuntu 14.04下搭建Node.js开发环境:http://www.linuxdiyf.com/linux/6987.html