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

How to Create an Email Sender AI Agent Using n8n (Step-by-Step Guide)

Style in React Native | Style Type

How to make Grid in React Native