Can I reload a single Javascript file using the Chrome developer tools?

In many cases, I make small changes to the JavaScript file, in order to see the result, I need to reload the entire page.

Changes made to the Chrome developer tool on the Source tab are not saved to the file system.

So, is it possible to reload a single javascript file alone?

+5
source share
1 answer

I can't think of a lot of effective way to do this, but one way to do this is to add a breakpoint at the beginning of the JavaScript file or in the block that you want to add or remove.

, , , , , .

, : , ​​, , JavaScript .

0

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


All Articles