使用节点js配置本地服务器

时间:2016-03-17 06:20:20

标签: node.js xampp localhost wamp localserver

我的系统上安装了Node JS,如何使用没有wamp或xampp的节点js配置本地服务器,以便我可以在本地计算机上运行我的应用程序?有人可以帮助我逐步程序吗?

2 个答案:

答案 0 :(得分:0)

Node JS使创建服务器变得非常简单。您需要做的就是编写一个文件:server.js。

var http = require("http");
var server = http.createServer(function(request, response) {
  response.end('Hello World!');
});

server.listen(8000);
console.log("Server is listening");

打开cmd并编写

node server.js

转到浏览器并打开

localhost:8000

这应该有用!

答案 1 :(得分:0)

尝试使用此命令配置不带沼泽的本地服务器|| Xampp

select * from whatever where z = query.z