2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

localhostでデバッグしてる開発中のサイトをスマホでも確認したい。

Posted at

開発中のサイトをスマホで開こうとする時、調べるとpcのipアドレスを入力する方法がたくさん出てきたが普通にめんどくさかった。
ngrokを使ってそこらへんを省きたい。

↓からngrokをインストール。最初はサインアップしないといけない。

フレームワークなど使ってない場合はローカルサーバーを任意のポートでたてる。別にpython以外でも構わない。

python -m http.server xxx

ngrokのxxxにポート番号を指定する。

ngrok http xxx

↓のようにhttps://xxxx-xxx-xx-xxx-xxx.ngrok-free.appが出てくる。このアドレスでスマホでも開発中のサイトにアクセスできる。

Forwarding    https://xxxx-xxx-xx-xxx-xxx.ngrok-free.app -> http://localhost:3000
2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?