web-servers
Python 2.x
$ python -m SimpleHTTPServer 8000Python 3.x
$ python -m http.server 8000Twisted (Python)
$ twistd -n web -p 8000 --path .$ python -c 'from twisted.web.server import Site; from twisted.web.static import File; from twisted.internet import reactor; reactor.listenTCP(8000, Site(File("."))); reactor.run()'Ruby
$ ruby -rwebrick -e'WEBrick::HTTPServer.new(:Port => 8000, :DocumentRoot => Dir.pwd).start'Ruby 1.9.2+
$ ruby -run -ehttpd . -p8000adsf (Ruby)
Sinatra (Ruby)
Perl
Plack (Perl)
Mojolicious (Perl)
http-server (Node.js)
node-static (Node.js)
PHP (>= 5.4)
Erlang
busybox httpd
webfs
IIS Express
Meta
Last updated