I'm trying to download the YUI compressor to use on a Windows 7 platform. How do you do that?

PS. I don't need to build it or anything like that, all I need is an exe file to run to compress my js files. Is there an easy way to download it?

link|improve this question
possible duplicate of stackoverflow.com/questions/23745/… – Oleg Mikheev Dec 4 '11 at 0:38
I don't need gui. All I need is to download the damn thing... – johhny dow Dec 4 '11 at 0:43
a GUI and exe file are the same thing sometimes... – Oleg Mikheev Dec 4 '11 at 0:46
OK, I agree with you. So how can I download one? – johhny dow Dec 4 '11 at 1:04
You can either download from YUI site and build it yourself or find a pre-built version hosted somewhere else (and be careful from where you download). – zladuric Dec 20 '11 at 11:41
feedback

2 Answers

up vote 0 down vote accepted

How about the instructions in this article?

link|improve this answer
In your link, one download url is broken and the second one leads to the official YUI page that I can get via Google.... that isn't helpful. – johhny dow Dec 4 '11 at 1:04
@johhnydow: Which link is broken? I just tested it and they all work correctly. Is it this one: mattjsherman.com/yui-compressor-shell-extension-for-windows – competent_tech Dec 4 '11 at 1:05
OK, I tried to install it from "Download yuicompressor.zip" link but it doesn't work. There's no yuicompressor.jar file in that installer. – johhny dow Dec 4 '11 at 3:14
@johhnydow: I just downloaded it and unzipped it and there are three files in the zip: yuicompressor.bat, yuicompressor.jar, and yuicompressor.reg. – competent_tech Dec 4 '11 at 3:23
Oh, sorry. My WinRAR was showing .jar file it as a rar archive. Now it works. – johhny dow Dec 4 '11 at 3:28
feedback

I downloaded the jar version from here and just built it from .

unzip Downloads/yuicompressor-2.4.7.zip
cd yuicompressor-2.4.7
ant

Instead of command line unzip, you can download 7-zip or something to extract it.

And it works:

java -jar yuicompressor-2.4.7/build/yuicompressor-2.4.7.jar
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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