Node. js 네 이 티 브 경로

Node. js 네 이 티 브 경로
          ,         url,    ,  :          
var http=require('http');
var fs=require('fs');
http.createServer((req,res)=>{
     
    //console.log(req.url)
    switch(req.url){
     
        case '/hello':
            res.write('hello')
            res.end()
            break;
        case '/hehe':
            res.write('hehe')
            res.end()
            break;
        case '/my':
            fs.readFile('./dist/1.txt',(error,data)=>{
     
                if(error) throw error
                res.write(data)
                res.end()
            })
            break;
        default:
        break;
    }
    
}).listen(8003,'localhost',()=>{
     
    console.log('      :http://localhost:8003')
})

좋은 웹페이지 즐겨찾기