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");
上記は私の基本的な Web サーバーです。HTML と JS ファイルを含むアプリケーションを実行したいと思います。ポートからアクセスできるように、これらのファイルをどこに配置しますか。
を使用Apache and Xampp
しているので、ファイルをhtdocs
ディレクトリに配置し、ブラウザからアクセスしますが、node.js
完全に混乱していますか?.