/**
* Created by Peter.
*/
//1.獲取內(nèi)嵌的http模塊(提供http服務(wù)器和客戶端)
var http = require('http');
//2.創(chuàng)建HTTP服務(wù)器
var server = http.createServer(function(req,res){
if(req.url == '/'){ //請求主頁
console.log(req.getAllResponseHeaders);
res.writeHead(200,{
'Content-type':"text/html"});
res.write(''
+'床前明月光');
res.end();
}else {
res.writeHead(404,{
'Content-type':"text/html"});
res.write(''
+'錯誤404:網(wǎng)頁沒找到');
res.end();
}
});
//3.啟動Http服務(wù)器
server.listen(3000,function(){
console.log("正在監(jiān)聽3000端口");
});