Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

free javascript obfuscator? [closed]

thanks for your attention and precious time.

Please mention some free javascrpt obfuscator software that can compress, obfuscates and encode javascript for protection. I serached but could found web based only and those which are free and desktop are not good. Please guide and help me.

thanks

like image 458
haansi Avatar asked Aug 16 '10 04:08

haansi


1 Answers

Minification "compresses" code.

Packing "compresses" and "obfuscates" code.

The most popular packer I believe to be: http://dean.edwards.name/packer/

However Google Closure one of the highest rated minifiers can also do packing with additional options: http://code.google.com/closure/compiler/docs/api-tutorial3.html#enable

like image 127
balupton Avatar answered Nov 05 '22 17:11

balupton