You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
varexpress=require('express');varpath=require('path');varapp=express();// deliver index.html if no file is requestedapp.get("/",function(request,response){response.sendFile(path.join(__dirname,'views/index.html'));});// deliver page1.html if page1 is requestedapp.get('/page1',function(request,response){response.sendFile(path.join(__dirname,'views','page1.html',function(error){if(error){console.log(err);response.end(JSON.stringify({error:"page not found"}));}});});app.listen(8080);