Editors Choice

3/recent/post-list

Express App

const express = require('express');
const app = express();
const port = 8080;

app.get('/', (req, res)=>{
	res.send("This is Home Page");
})

app.get('/contact', (req, res)=>{
	res.send("This is Contact Page");
})

app.get('/about', (req, res)=>{
	res.send("This is About Page");
})

app.listen(port, ()=>{
	console.log(`Express App runing on http://localhost:${port}`);
})

Post a Comment

0 Comments