我正在尝试使用此代码创建一个http服务器。虽然我尝试运行它 错误来了(语法错误:意外的标识符)。 现在我没有发现任何错误。
var http = require('http');
//Lets define a port we want to listen to
const PORT=8080;
//We need a function which handles requests and send response
function handleRequest(request, response){
response.end('It Works!! Path Hit: ' + request.url);
}
//Create a server
var server = http.createServer(handleRequest);
//Lets start our server
server.listen(PORT, function(){
//Callback triggered when server is successfully listening. Hurray!
console.log("Server listening on: http://localhost:%s", PORT);
});
答案 0 :(得分:0)
大多数人在节点会话本身之外运行该命令。
> Thoms-MacBook-Pro:desktop thomvaladez$ node example.js
如果你已经在你已经完成的节点会话中 - 正如t3dodson所建议的那样 - 你在那时做了一个要求。只需要在“./”前加上它,以便找到你的文件。
> Thoms-MacBook-Pro:desktop thomvaladez$ node
> require ('./example.js')
> Hello World!
我猜你的版本中的“节点”是“意外的标识符”。