Create backend

- NodeJs
 - Express
 - Socket.io
 - Eslint
 - TypeScript
This commit is contained in:
gparant 2020-04-04 04:08:12 +02:00
parent c0e75ae07e
commit ba335aa33d
10 changed files with 2277 additions and 0 deletions

3
back/server.ts Normal file
View file

@ -0,0 +1,3 @@
// lib/server.ts
import App from "./src/App";
App.listen(8080, () => console.log(`Example app listening on port 8080!`))