2022-06-03 17:24:14 +02:00

14 lines
238 B
JavaScript

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