A super simple node-express web server with https option for when you quickly need to serve some static files. Package includes self-signed certificates. Don't use this for production.
npm install super-simple-web-servernpm install super-simple-web-server
Clone repo and run npm install in the root directory.
npm start [] []
SSWS_HTTP_PORT = http port (defaults to 3000)SSWS_HTTPS_PORT = https port (defaults to 3001)127.0.0.1 which should convieniently map to localhost.Pro tip: Setting USE_LOCALHOST = false in index.js will instead scan for existing bound IP addresses on your machine via os.networkInterfaces(). The last available will be used.
```
module.exports = (app) => {
app.use(someCoolThingHere);
}
Fictious self-signed certs are provided for your development convienience. They will exprire on June 6 2028. Obviously -- you don't want to use these for anything other than private testing in your own bathtub.
See ./certs/` for more info...