日期:2014-05-16 浏览次数:20384 次
var http = require("http"); http.createServer(function(request, response) { response.writeHead(200, {"Content-Type": "text/html"}); response.write( '<!doctype html>'+ '<html>'+ '<head>'+ '<meta charset="utf-8"/>'+ '<title>米诺</title>'+ '</head>'+ '<body>'+ '<a href="/home.js">主页</a>'+ '<a href="/contact.js">Contact</a>'+ '</body>'+ '</html>'); response.end(); }).listen(8888); console.log("服务启动");