// This is a static Express 4 web server script.
// It will return requested documents from the given directory.
// Run npm install express if not yet installed.
const express = require('express');
const app = express();
app.use(express.static('/your directory of web docs'))
app.listen(8000);
// https://sean.brunnock.com 12/2022