嘿,伙计们,我一直在用 node.js 测试水,我写了一个由 Ryan Dahl 编写的简单 Web 服务器程序。
//web-server.js
var http= require('http');
http.createServer(function(req,res){
res.writeHead(200, {'content-type':'text/plain'});
res.end("helo world \n");
});
s.listen(8000);
奇怪的是,我收到了这个错误
可以看到,第一个命令是node-webserver.js
第二个命令是显示错误的地方
但是我知道 node.js 并没有损坏,因为 node.js 上提供的基本介绍程序仍然可以正常工作。很抱歉出现大量错误截图!
谢谢你的帮助!