Just a basic template for an express server in Node.js.
You will need Node.js installed before you can run this project. Latest stable can be found here: https://nodejs.org/en/
After Node.js is installed, navigate to the directory you cloned this project and do: npm install
.
To run the project, use this command: node server.js
.
In your preferred browser, go to: http://localhost:3000/
To reference files in index.html, drop them in the resources folder.
If you are interested in using certs and https: https://flaviocopes.com/express-https-self-signed-certificate/. This generated cert is self-signed so your browser will warn you that it could be dangerous.
For serving static resources, Express has a good guide: https://expressjs.com/en/starter/static-files.html.