How to check out my newly developed mobile site locally

So, I created a mobile site for personal purposes and worked a bit on jQuery mobile. I'm just wondering how I can check my mobile site locally at my station, since I don't have a server or FTP yet to upload it over the Internet.

Can anyone suggest how I can do this? I see many emulators, but I think, before I can test these emulators, I have to upload my site.

+6
source share
2 answers

You can download the server application locally - no need to download. Depending on what you have developed on this site, you will need different capabilities (for example, PHP will require PHP runtime).

In this regard, most operating systems come with an http server: Windows and IIS, OSX and "website sharing" (Apache httpd), and most Linux distributions either integrate one or have one installation tool.

If they are not attractive or affordable, you can get one that can be installed locally or run from a USB drive: Portable servers

To test the local http server, you point your browser to http: // localhost / , where the path depends on how you configured the server software.

+1
source

Source: https://habr.com/ru/post/915052/


All Articles