{ res.send("this is my first app with suphal") }) app.get("/about",(req,res)=>{ res.send("this is about page of suphal") }) app.post("/this",(req,res)=>{ res.status(404).send("the page is not found") }) app.listen(port,()=>{ console.log(`this application started successfully on port ${port}`) })"> { res.send("this is my first app with suphal") }) app.get("/about",(req,res)=>{ res.send("this is about page of suphal") }) app.post("/this",(req,res)=>{ res.status(404).send("the page is not found") }) app.listen(port,()=>{ console.log(`this application started successfully on port ${port}`) })"> { res.send("this is my first app with suphal") }) app.get("/about",(req,res)=>{ res.send("this is about page of suphal") }) app.post("/this",(req,res)=>{ res.status(404).send("the page is not found") }) app.listen(port,()=>{ console.log(`this application started successfully on port ${port}`) })">
const express=require("express")

const app=express();
port=80;

app.get("/",(req,res)=>{
    res.send("this is my first app with suphal")
})
app.get("/about",(req,res)=>{
    res.send("this is about page of  suphal")
})
app.post("/this",(req,res)=>{
    res.status(404).send("the page is not found")
})

app.listen(port,()=>{
    console.log(`this application started successfully on port ${port}`)
})