initial commit

This commit is contained in:
helori_ollivier
2026-04-19 21:15:23 +02:00
parent fb1bfa6123
commit 01c1dc0a63
3 changed files with 854 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
const express = require('express')
const app = express()
const port = 3000
app.get('/', (req, res) => {
res.send('Hello World!')
})
app.listen(port, () => {
console.log(`Example app listening on port ${port}`)
})