| 1234567891011121314 |
- //Simple server to host the website, using node so we can add more functionality in the future
-
-
- const express = require('express');
- const app = express();
-
- app.use(express.json());
- app.use(express.static('.'));
-
- function begin(){
- app.listen(8080, () => console.log(`Server running on Port 8080`));
- }
-
- begin();
|