Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Webstorm localhost from mobile


I can't access my Webstrom localhost on port 63342 from mobile.
I opened the port in Windows firewall and ESET (but port online checkers say me that the port still close).
I checked option "Can accept external connections" in Webstorm (but it caused message that Built-in HTTP server on that port disabled).
But when I check 192.168.0.48:63342 in mobile chrome - it still not available.
Please help.

like image 769
Тимофей Петров Avatar asked Mar 04 '15 18:03

Тимофей Петров


People also ask

How do I run a local server on WebStorm?

Press Ctrl+Alt+S to open the IDE settings and select Build, Execution, Deployment | Deployment. Alternatively, from the main menu, select Tools | Deployment | Configuration.... and select Local or mounted folder from the list.

How do I run a web app locally in Intellij?

From the main menu, select View | Open in Browser. Use the browser popup in the top right part of the editor window. Click the browser button to open the web server file URL, or Shift+Click it to open the local file URL.

How do I change my WebStorm port?

You can quickly do this by typing chrome://extensions/ into your awesomebar, and then just hitting ENTER . Click options underneath Jetbrains IDE support . It will open up a new window where you can change your port.

Can I run js in WebStorm?

With WebStorm built-in debugger, you can debug both your client-side and server-side code and even run JavaScript code snippets in the interactive debugger console.


1 Answers

I'd suggest using a different port (8080, 8090) if you need to access the server from another host. External connections to 63342 are not supported for security reasons. Here are instruction for connecting to WebStorm internal web server from a different host: - on a remote host, make sure to install JetBrains IDE Support extension into Chrome - in extension options (chrome-extension://hmhgeddbohgjknpmjagkdomcpobmllji/options.html), specify the IP and port of the target machine - on a target computer, start WebStorm, make sure that the port specified in Settings/JavaScript/Debugger is the same as above and 'Can accept external connections' is on. Open your project and run your application

like image 101
lena Avatar answered Sep 28 '22 23:09

lena