Is there a way to make my js files not viewable or debuggable through browsers developper tools?
Greetz Andy
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No. The browser needs to be able to read and execute your scripts, which means that in any case it has got something to show to the user in the debugging tools. You might try to obfuscate your script, but Chrome has a “pretty print” mode which reformats the Javascript back to a readable spacing and indentation (obfuscated function and variable names might still make it a bit harder to read).