Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to minify and obfuscate multiple javascript files at once but keeping the way they are linked (name of variables and functions)

Do you know any software that could help ?

Thx by advance

share|improve this question
Can you combine them into one file and then obfuscate? – Joe Oct 19 '11 at 13:58
I believe most minifiers are smart enough not to rename global scope objects... not positive about that though. Looking forward to an answer to this too. – mattacular Oct 19 '11 at 13:59
You can also convert multiple files into multiple obfuscated files instead of having one single obfuscated files. Check out my answer that I just posted. – Adil Malik Jul 6 '12 at 6:19

4 Answers

up vote 3 down vote accepted

Pick whatever suits you best.

  1. Closure Compiler (online sandbox).
  2. YUI Compressor
  3. UglifyJS
share|improve this answer

You can also convert multiple js files into multiple obfuscated files instead of having one single obfuscated files. I've created a solution and explained it on my blog. Please take a look: http://adilsblogs.blogspot.com/2012/07/obfuscating-multiple-js-files-using-yui.html

share|improve this answer

Our ECMAScript Obfuscator does this. It builds a map remember how it obfuscated names, and you can reobfuscate individual files, or new files, and extend the map, without breaking what has already been obfuscated.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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