moved folder structure

This commit is contained in:
hugo gogo
2022-10-14 18:48:38 +02:00
parent 87a7e75de1
commit b35cf724bc
429 changed files with 57 additions and 41 deletions

View File

@@ -0,0 +1,10 @@
const express = require('express')
const server = express()
server.get('/', (req, res) => {
res.sendFile(__dirname + "/" + "index.html")
})
const port = 3000
server.listen(port, console.log(`listening on port ${port} with express`));