I Write my first Express App
I Write my first Express App.................❤❤❤❤
const express = require("express");
const app = express();
const port = 80;
app.get("/", (req, res)=>{
res.status(200).send("This is homepage of my first express app with shohaib");
});
app.get("/about", (req, res)=>{
res.send("This is about page of my first express app with shohaib");
});
app.post("/about", (req, res)=>{
res.send("This is a post request about page of my first express app with shohaib");
});
app.get("/this", (req, res)=>{
res.status(404).send("This page is not found on my website oos");
});
app.get("/services", (req, res)=>{
res.send("This is services page of my first express app with shohaib");
});
app.listen(port, ()=>{
console.log(`The application started successfully on port ${port}`);
});
No comments