Are there any .Net components for obfuscating JavaScript? I generate JavaScript dynamically and emit through ClientScript.RegisterClientScriptBlock. I would like it to be difficult for other people to view and modify this script.
Cautions:
- Yes, I know that obfuscating JavaScript will be just a nuisance for a serious developer.
- I intend to add (not obfuscated) copyright notices.
- My C # program that generates JavaScript is my real added value. This source will not be available to viewers. However, I would like to hide the functions and data that it creates.
Thanks!
source
share