Find a way to start a simple HTTP server using "npm". Submit the command that starts the web server on port 8080 (use the short argument to specify the port number). code example
Example: linux start simple http server
python -m SimpleHTTPServer
# or the Python 3 equivalent
python3 -m http.server