initial, express-typescript config, react-vite created

This commit is contained in:
Mikayla Dobson
2022-11-17 11:17:20 -06:00
commit 31995bde8e
38 changed files with 5678 additions and 0 deletions

11
server/index.ts Normal file
View File

@@ -0,0 +1,11 @@
import express, { Request, Response } from 'express';
const app = express();
const port = 8080;
app.get('/', (req: Request, res: Response) => {
res.send('express');
})
app.listen(port, () => {
console.log('listening on ' + port);
})