http-server は Node.js のプラグインで、任意のディレクトリ配下をWebサイトとして表示する事ができる。
ちょっとした確認を行うのにWebサーバが欲しい時などに便利。
Node.js がインストール済みであれば、プラグインをインストールするだけ
sudo npm install http-server -g
cd /path_to_dir -- 公開したいディレクトリに移動 http-server -- サーバ開始 Starting up http-server, serving ./ Available on: http:127.0.0.1:8080 http:160.249.88.206:8080 Hit CTRL-C to stop the server