Reputation: 165
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?
Upvotes: 0
Views: 895
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
Reputation: 75
You can use the Uglify and Minify methods to make changes difficult, but never stop them.
Upvotes: 1