up vote -1 down vote favorite
share [g+] share [fb]

Possible Duplicates:
How can I obfuscate JavaScript?
What do you use to minimize and compress JavaScript libraries?

hi all,

2 questions:

  1. i'd like to compress my code, anyone knows which compressor the guys from jquery are using? or is there any free script? (i'd like to use the compressor using an automated asp-script, so no standalone software)

  2. is there a good code obfuscator which makes it harder for code stealers? best would be a combination of packer+obfuscator :)

thx

link|improve this question

69% accept rate
yeah not only is this almost certainly a duplicate but it might more appropriately be googled for .... search first, people – George Jempty Aug 8 '10 at 15:32
feedback

closed as exact duplicate by sth, Reigel, Gert G, SpliFF, user113716 Aug 8 '10 at 15:58

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ.

3 Answers

up vote 4 down vote accepted

There is a really great compressor from Google called closure compiler:

http://closure-compiler.appspot.com/

There are three different degrees of compilation you can use.

  1. WHITESPACE_ONLY

  2. SIMPLE_OPTIMIZATIONS

  3. ADVANCED_OPTIMIZATIONS

It also lets you compile your code programatically using an external API.

link|improve this answer
feedback

This is what I use: http://developer.yahoo.com/yui/compressor/

My advice is to not bother with obfuscation, if someone really wants to steal it they can.

link|improve this answer
feedback

Compressor:

http://javascriptcompressor.com/

Beautifier:

jsbeautifier.org

No there is no way to stop js from being stolen, but you can make it really really hard to understand. Obfuscate, Use function closures

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.