「node.js入門」require()でhttpモジュールを使うサンプル
構文
var http = require(“http");
http.createServer(function(request, response)
{some code}
サンプルコード
var http = require("http"); function onRequest(request, response) { response.writeHead(200, {"Content-Type": "text/plain"}); response.write("welcome study in arkgame"); response.end(); } http.createServer(onRequest).listen(8080);