first commit
This commit is contained in:
@@ -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')
|
||||
|
||||
})
|
||||
Reference in New Issue
Block a user