Archive
Posts Tagged ‘web server’
Python web server on localhost
November 10, 2011
Leave a comment
python2 -m SimpleHTTPServer
Tip from here.
Python 3
python3 -m http.server
Update (20170914)
If you want to share a file with several people, use Node.js. The Python web server (as seen above) is single threaded, while Node.js works in async mode. Read more here.
Categories: python
localhost, one-liner, web server
