HTTP 経由でファイル ディレクトリを提供する、高速でポータブルな Go コマンド ライン ユーティリティ。ローカル Web 開発、実稼働静的サイトの提供、またはネットワーク ファイル ホストとして使用できます。デフォルトでは、 go-live
実行されるディレクトリを提供します。
JavaScript の有名なlive-server
ユーティリティに基づいています。 Linux、Windows、Mac に加えて ARM もサポートします。支援に興味がある場合は、TODO リストを参照してください。
使用するには: 提供したいディレクトリ内でターミナルでgo-live
を実行します。
brew tap antsankov/go-live && brew install go-live
opt/homebrew
にインストールされていることを確認してください。 Brew はデフォルトではこれを行いません。これを行う最も簡単な方法は、 homebrew
github リリース ページから .pkg を介して homebrew をインストールすることです。 brew tap antsankov/go-live && arch -arm64 brew install go-live
curl -LJO https://github.com/antsankov/go-live/releases/download/v1.2.1/go-live-mac-x64.zip && unzip go-live-mac-x64.zip && mv go-live /usr/local/bin/go-live && chmod +x /usr/local/bin/go-live && go-live
curl -LJO https://github.com/antsankov/go-live/releases/download/v1.2.1/go-live-mac-arm64.zip && unzip go-live-mac-arm64.zip && mv go-live /usr/local/bin/go-live && chmod +x /usr/local/bin/go-live && go-live
snap install go-live
sudo wget https://github.com/antsankov/go-live/releases/download/v1.2.1/go-live-linux-x32 -O /usr/bin/go-live && sudo chmod +x /usr/bin/go-live
sudo wget https://github.com/antsankov/go-live/releases/download/v1.2.1/go-live-linux-x64 -O /usr/bin/go-live && sudo chmod +x /usr/bin/go-live
sudo wget https://github.com/antsankov/go-live/releases/download/v1.2.1/go-live-linux-arm32 -O /usr/bin/go-live && sudo chmod +x /usr/bin/go-live
sudo wget https://github.com/antsankov/go-live/releases/download/v1.2.1/go-live-linux-arm64 -O /usr/bin/go-live && sudo chmod +x /usr/bin/go-live
docker pull antsankov/go-live
実行するには (ポート 9000 で現在のディレクトリを提供します):
docker run --rm -v "${PWD}":/workdir -p 9000:9000 antsankov/go-live go-live
ここからダウンロードして実行してください
GO111MODULE=on go get github.com/antsankov/go-live
git clone https://github.com/antsankov/go-live.git && cd go-live
make build && ./bin/go-live
git clone https://github.com/antsankov/go-live.git && cd go-live
make cross-compile && ls release/
gon gon.json
security find-identity -p codesigning
。有効でない場合は、https://developer.apple.com/forums/thread/86161 を参照してください。開発者証明書の情報をチェックして、「組織単位」証明書がインストールされているかどうかを確認する必要があります。sudo docker build -t antsankov/go-live:v1.2.1 .
そしてsudo docker push antsankov/go-live:v1.2.1
-h Print help message for go-live
--help
-c Allow browser caching of pages. Can lead to stale results, off by default.
--cache
-d string
Select the directory you want to serve. Serves all subpaths that user has read permissions for. (default "./")
--dir string
(default "./")
-p string
Set port to serve on. (default "9000")
--port string
(default "9000")
-q Quiet stops go-live from opening the browser when started.
--quiet
-s Start in server mode on port 80 and in quiet.
--serve
-v Print the version of go-live.
--version
注: index.html
はディレクトリのルートに自動的に表示されます。
例: ポート 80 経由で静的サイトを提供する
sudo go-live --dir ~/example.com/ --serve