I want to know is it possible to reproduce obfuscated javascript code(create javascript code from obfuscated javascript code).
I have some javascript code in my website. I want to prevent others to edit it. For that I user obfuscation. So I want to know, is it possible to create original javascript code from an obfuscated code.
You can use a code formatter like JavaScript beautifier to bring the code back into a more or less readable structure. It is impossible to re-build meaningful variable names from compressed ones, though, so in the end, it’s not possible. And it’s a good thing that it isn’t – that’s the point of obfuscating code, isn’t it?