コマンドラインでWebサーバを稼働する方法
Nid: 677
- netcat
$ while true ; do nc -l 8888 < index.html ; done
- php
$ php -S localhost:8888
- python
$ python -m SimpleHTTPServer 8888
- ruby
$ ruby -run -e httpd . -p 8888
$ while true ; do nc -l 8888 < index.html ; done
$ php -S localhost:8888
$ python -m SimpleHTTPServer 8888
$ ruby -run -e httpd . -p 8888