Quickest ways to run a local web server

For when we need to run a quick local webserver

Python 3

python -m http.server 8080

NodeJS

npx serve --listen 8080

PHP

php -S 0.0.0.0:8080

Ruby

ruby -run -e httpd . -p 8080