Awesome
liveserver
- live update local web server "live-server" in Deno
- ファイル更新で自動的にブラウザを更新するローカル用ウェブサーバー「live-server」のDeno版
how to run (使い方)
$ deno run --allow-env --allow-read --allow-net https://js.sabae.cc/liveserver.js
→ open http://localhost/
or exec with port number
$ deno run --allow-env --allow-read --allow-net https://js.sabae.cc/liveserver.js 8888
how to install (インストールの仕方)
$ deno install -g --allow-env --allow-read --allow-net https://js.sabae.cc/liveserver.js
you can use in any directory (どんなディレクトリでも簡単に実行できるようになる)
$ liveserver
how to use (使い方)
- exec liveserver (liveserverを起動)
- open index.html on your browser (http://localhost/をブラウザで開く)
- edit index.html → refresh the page! (index.htmlを編集すると自動的に再読み込みされる!)
- edit style.css → refresh the style on the page! (style.cssを編集するスタイルだけ自動的に再設定される!)
how to uninstall (アンインストールの仕方)
$ deno uninstall -g liveserver