var sys = require("sys"),
my_http = require("http");
my_http.createServer(function(request,response){
sys.puts("I got kicked");
response.writeHeader(200, {"Content-Type": "text/plain"});
response.write("Hello World");
response.end();
}).listen(8080);
sys.puts("Server Running on 8080");
以上是我的基本网络服务器,现在我想运行包含 HTML 和 JS 文件的应用程序。我会将这些文件放在哪里,以便我可以通过我的端口访问它。
我使用Apache and Xampp
,所以我将我的文件放在htdocs
目录中并通过我的浏览器访问它,但就我而言,node.js
我完全糊涂了?