WebStorm Changes URLs

We use two IDE files for developing Angular.js applications: brackets v1.7 + WebStorm v2016.2

When you open the application through the IDE brackets, the URLs are displayed as expected:

http://127.0.0.1:55738/index.html#/distributor

But when I open the same URL from the WebStorm IDE, it looks like this:

http://localhost:63342/svnSource/SRDL/index.html?_ijt=j25vtpn610cetc16cgo6btff1v#/distributor

Why is this so different, and why does WebStorm introduce these additional parameters? Maybe something optional that you can disable?

UPDATE

This was a real pain for our team, as we develop applications for the intranet behind a proxy server, and this new “feature” does not bring any benefit and only annoys all developers. Desperate to somehow get rid of him.

+4
source share
2 answers

Well, this is because JetBrains has updated some security fixes to WebStorm v2016.2.

They allow authorization for the embedded server, and currently Tt cannot disable this option according to the JetBrains command.

for more information about this, please find the following article:

https://blog.jetbrains.com/blog/2016/05/11/security-update-for-intellij-based-ides-v2016-1-and-older-versions/

Hope this helps!

+1
source
http://localhost:63342/svnSource/SRDL/index.html?_ijt=j25vtpn610cetc16cgo6btff1v#/distributor

This is the local debugging mode of Webstorm, and here, what WebStorm does, they run your code from the embedded web server and follow this specific format.

The sitelink, in fact, is the location of the project file where you place the codes.

, , , . ( )

-, .

. , WebStorm . WebStorm - URL http://localhost:/. (1024 ) " " "". : HTML JavaScript /, WebStorm . , , script. .

, .

, , .

0

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


All Articles