Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was using JS minifiers a lot for my production code, and only recently I started to wonder how do they exactly work.

I can understand the ideas for using minifiers:

  • decrease the size js
  • obfuscate js
  • merge several js files into one

I also can understand on really low level how JS file is minified:

  • all the comments are deleted
  • some spaces/new lines are deleted
  • variables are substituted with shorter variables

But I know that there is much more to be done by a normal JS minifier.

Can anyone explain on the example how does it work?

share|improve this question
3  
Most of those have source code available. That would be the canonical source of the answer. – millimoose Nov 19 '12 at 22:07
Is there anything wrong with a question? why voting to close it? – Salvador Dali Nov 19 '12 at 22:08
2  
"How does X work?" is vague, and there's an obvious source of information (minifier source) for own research. – millimoose Nov 19 '12 at 22:09
3  
I voted to close because the amount of techniques used is way beyond the size of one answer (not to mention there are different minifiers). You should not ask questions that would require several pages of explanations and examples. – Tomasz Nurkiewicz Nov 19 '12 at 22:10
2  
@millimoose, you mean, like how to break out of each()? ;) – Frédéric Hamidi Nov 19 '12 at 22:15
show 9 more comments

closed as not constructive by Quentin, millimoose, Tomasz Nurkiewicz, Frédéric Hamidi, int3 Nov 19 '12 at 22:20

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.

Browse other questions tagged or ask your own question.