How do I connect to this localhost from another computer on the same network?

后端 未结 8 2050
陌清茗
陌清茗 2020-11-22 16:48

I\'m currently working on a project and I would like to test it out on two laptops at home where one laptop connects to the localhost on the other. I am using XAMPP. How do

8条回答
  •  粉色の甜心
    2020-11-22 17:15

    On Mac OS X:

    1. In terminal, run ifconfig | grep 192. to get the internal IP of your machine on it's current network. It may be something like 192.168.1.140

    2. Start a server. For example, node server.js may start a server on some port.

    3. On your phone, visit 192.168.1.140:3000 or whatever port your server is running on.

提交回复
热议问题