nodejs寫一個簡單的Web服務器

目錄文件如html

 

httpFile.js以下:ui

const httpd = require("http");
const fs = require("fs");

//建立服務
httpd.createServer((req,res)=>{
    //讀取www文件夾下的路徑
    fs.readFile(`www${req.url}`,(err,data)=>{
        //失敗返回404
        if(err){
         res.writeHeader(404);
            res.write('<h1>404</h1>');
        }else{
            //成功返回頁面
            res.write(data);
        }
        res.end();
    })
}).listen(8082);
console.log('runing......')

訪問url

訪問1.htmlspa

 

 完成!!3d

相關文章
相關標籤/搜索