abhimanyu
abhimanyu

Reputation: 165

how to stop modification and changes in client side source file in developer tool?

I am using angular in i can easily add some javascript code and modify the program. Is there any way to stop modification in source file?

enter image description here

Upvotes: 0

Views: 895

Answers (2)

Mohideen bin Mohammed
Mohideen bin Mohammed

Reputation: 20137

Its Developer Feature provided in browser to do client side modification for testing purposes.

you dont worry it wont modify your source code anyhow.. its just for some time till the page getting reloaded..

because your code will located in server which secure enough. so its not possible to edit from client side tool like Developer console

But if you can prevent user to get into Developer tools .

user following ctrl+shift+i or F12 or Right Click->inspect Element way to get into it.

you can still disable those prevent user to enter into Dev tools.

for more info how to disable dev tools

Upvotes: 0

Rodrigo Lanes
Rodrigo Lanes

Reputation: 75

You can use the Uglify and Minify methods to make changes difficult, but never stop them.

Upvotes: 1

Related Questions