first commit

This commit is contained in:
2024-04-18 09:30:05 +05:30
commit ee5c224767
809 changed files with 93350 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
const express =require('express')
const app = express()
app.get('/login',(req,res)=>{
res.send('Hello World')
})
app.listen(3000,(req,res)=>{
console.log('Server is running on port 3000')
})