We have audio! Thanks @orsi!

This commit is contained in:
jorsi
2020-05-28 19:10:09 -04:00
committed by Michael Townsend
parent d6d1c1b987
commit a601473645
106 changed files with 1415 additions and 399 deletions
+8
View File
@@ -0,0 +1,8 @@
import express from 'express';
const PORT = 8080;
const app = express();
app.use(express.static('.'));
app.listen(PORT, () => console.log(`Listening on port ${PORT}`));