Express JS Example

 const express=require('express');

const app=express();

app.get('', (req, resp)=>{
    resp.send('Hello, this is a home page');
});

app.get('/about', (req, resp)=>{
    resp.send('Hello, this is a about page');
});
app.listen(5000);

Comments

Popular posts from this blog

Send Data Child to Parent Component - React Js

Hide , Show and Toggle in ReactJs

Importance Of Web Content In SEO.