2020-11-13 15:10:29 +01:00

13 lines
237 B
JavaScript

const express = require('express')
const app = express()
const port = 3000
app.get('/', (req, res) => {
res.send('hello from app3 !')
})
app.listen(port, () => {
console.log(`Example app listening at http://localhost:${port}`)
})