Start a Web Server With One Terminal Command on OS X

I’ve searched for this three times this week, so I figured I’d better make sure I have a copy of it. Python 2: python -m SimpleHTTPServer 8000 Navigate to the project directory in the terminal and do that command. Then http://localhost:8000 will server up that directory (as in, it’s `index.html` file). Python 3: python3 -m … Continue reading Start a Web Server With One Terminal Command on OS X