Init express

This commit is contained in:
2022-04-24 00:37:55 +02:00
parent 6526ab8fe7
commit df8b46c667
3 changed files with 14 additions and 2 deletions

10
server.js Normal file
View File

@@ -0,0 +1,10 @@
const express = require('express');
const app = express();
app.get('/', (req, res) => {
res.send('Hello Game Jam!');
});
app.listen(3030, () => {
console.log('Server listening on port 3030!');
});