mirror of
https://gitlab.com/berufsschul-ae/blitzchat.git
synced 2024-12-22 20:37:40 +01:00
10 lines
251 B
JavaScript
10 lines
251 B
JavaScript
|
const express = require('express')
|
||
|
|
||
|
const app = express()
|
||
|
const port = 3000
|
||
|
|
||
|
app.get('/', (req, res) => {
|
||
|
res.send('Hello World!')
|
||
|
})
|
||
|
app.use(express.static('./static'))
|
||
|
app.listen(port, () => console.log(`Example app listening on port ${port}!`))
|