15 Intro to ExpressJS Atharva Satyendra Agrawal August 12, 2020 Atharva Satyendra Agrawal Program: var express = require('express'); var app = express(); app.get('/home',function(request,response){ response.send("This is my HomePage"); }); app.listen(5000); Output: Tweet Share Share Share Related Post