アットウィキロゴ

node3

var html = "<!doctype html>" +
"<html><head><title>Hello world</title></head>" +
"<body><h1>Hello, world!</h1></body></html>";
 
var http = require('http'); 
 
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/html'});
res.end(html);  
}).listen(1337, '127.0.0.1'); 
console.log('http://127.0.0.1:1337/'); 
最終更新:2015年11月10日 05:40