I am looking to use a javascript obfuscator. What are some of the most popular and what impact do they have on performance?
closed as not constructive by Robert Harvey♦ Sep 7 '11 at 22:34
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Yahoo has a pretty good one. It's technically a minifier, but it does a nice job of obfuscating in the process. |
|||
|
|
I've always found the best way to obfuscate Javascript is to get your most clueless team member to write it. It's pretty much guaranteed that they'll write some unreadable mess. |
|||
|
Nowadays it seems to be JScrambler. It has a nice set of features for free. I tried and it worked out of the box with a few clicks. Other js obfuscators I tried seemed too unsophisticated or frustrating to work with. The premium features, such as Domain Lock and Expiration Date seem to be way ahead of what other tools offer. Also, there's an API in the works to automate obfuscation. |
|||
|
|
|
Well, google brought up this as the first link: http://www.javascriptobfuscator.com But I wonder what good obfuscation of javascript does. Whatever it is you're doing in javascript that needs obfuscation should probably be done server-side anyway, right? |
|||
|
|
|
I've never used obfuscator in production, but I've tested JavaScript Utility and it seems pretty good. As for the performance, obfuscated code must be unpacked on the fly each time the page is loaded. Might not be a problem for small scripts, but the unpacking time will be significant with bigger files. On the other hand, minified code is directly executable by the browser. Some obfuscators might produce output that does not run in older or less common browsers. You should test very carefully with the browsers you plan to support. |
|||||
|
|
I'd have to say Hackvertor (disclaimed I wrote it) it's free and it supports tag based conversion. Check out the example:- |
|||
|
|
|
Tested 8 different obfuscators (except www.javascriptobfuscator.com), and was amazed by how much they all suck. Ended up writing my own obfuscator using regular expressions. Enjoy:
|
|||||||||
|
|
You could also try the JavaScript Compressor written by Dean Edwards. |
|||
|
|
|
Packer with base62 http://dean.edwards.name/packer/ |
|||
|