How view a project directly from a mobile device?

How can I see updates to a project directly from a mobile device? while is beeing developtment. (Similar to React Native’s Expo)
I’m new and I need help

hi, you need to use a webserver.

if you use visual studio code (the simpliest way) right clic on the index.html file and open with live server, and it’s done !

ps you must before install plugin liveserver on visual studio code

1 Like

Thank you for your response,
but what I mean is to see directly on the cell phone how the application is working, without the need to compress it and convert it into a download format. Since I already use the xamp server but I can’t see how it works directly on the cell phone.

(I tried it with phonegap desktop and phonegap app in the playstore, but it was a complete failure.)

With browsersync for exemple you have an URL adress and you simple view the content on your phone, it must be the same with liveserver

Check this:

1 Like

Hi @Kncardenas,
In my case, to debug and test projects on my android mobile, I connect it via USB to the PC and use the “remote devices” option of Google Chrome.
More info here:


The previsualization slows down the execution, so I recommend deactivating it.

Regards.

3 Likes

THANKS! This was so helpfull for me!!