If you ever need to serve your current directory via http for some reason, here's an NPM module solution 1~$ yarn global add serve And run this (it's automatically added to ~/.bashrc or equivalent on your shell): 1export PATH="$HOME/.yarn/bin:$HOME/.config/yarn/global/node_modules/.bin:$PATH" and run 1~$ serve …
Read MoreIf you ever need to serve your current directory via http for some reason, this is a quick command in python3: 1~$ python3 -m http.server 8000 Then access http://localhost:8000
Read More