first commit

This commit is contained in:
Nils Cant
2019-09-11 10:19:01 +02:00
commit cc18641a87
5 changed files with 397 additions and 0 deletions

7
app.js Normal file
View File

@@ -0,0 +1,7 @@
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}!`))