In below code i can able to listen port 9080 but i need to access my local file path (D:\xampp\htdocs\ln\try\index.html) using http request
var http = require('http');
const PORT=9080;
function handleRequest(request, response){
response.end('It Works!! Path Hit: ' + request.url);
}
var server = http.createServer(handleRequest);
server.listen(PORT, function(){
//Callback triggered when server is successfully listening. Hurray!
console.log("Server listening on: http://localhost:%s", PORT);
});