Bootstrap server

This commit is contained in:
KGrzeg 2021-10-17 18:48:39 +02:00
parent 1beb2f7462
commit 895dbbd060
5 changed files with 8087 additions and 0 deletions

9
server/server.js Normal file
View file

@ -0,0 +1,9 @@
import express from 'express';
const app = express();
app.get("/", (req, res) => {
res.send("hello");
});
app.listen(3000);