add a demo webui

This commit is contained in:
2023-11-24 13:54:36 -06:00
parent ca5b37a54d
commit b13e906f44
8 changed files with 1254 additions and 18 deletions
+8
View File
@@ -0,0 +1,8 @@
const express = require('express');
const path = require('path');
const app = express();
app.use(express.static(path.join(__dirname, './html')));
app.listen(3000);