// This is a static Express 5 web server script.

// It will return requested documents from the given directory.

// Run npm install express if not yet installed.

import express from 'express';
const app = express();
app.use(express.static('/your directory of web docs'))
app.listen(8000);


// https://sean.brunnock.com  4/2026