Skip to content

Instantly share code, notes, and snippets.

View cptiwari20's full-sized avatar
🏠
Working from home

Chandra Prakash Tiwari cptiwari20

🏠
Working from home
View GitHub Profile
const express = require('express');
const app = express();
var port = 3000 || process.env.PORT;
app.listen(port, ()=>{
console.log('Server has been started! Live Port:', port);
}