fedora22搭建node.js服务器环境

由于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


你可能感兴趣的:(node.js,fedora)