new main project start

This commit is contained in:
2026-01-31 08:19:10 -06:00
parent e3f990815b
commit b6f78e4659
6 changed files with 835 additions and 4 deletions

17
src/index.js Normal file
View File

@@ -0,0 +1,17 @@
import express from 'express'
const app = express()
const port = 8081
app.use(express.json())
app.get('/',(req,res)=>{
res.send('Hello from express server!')
})
app.listen(port, ()=>{
console.log(`Listening on port ${port}`)
})