Has anyone setup an online copy/paste utility for Google’s Closure minifier?
I’m working on a project and I want to minify part of the code manually without having to setup the entire project on my own.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
How about google’s own service:
http://closure-compiler.appspot.com/home
I should point out that “setting up the entire project on my own” really is not half as scary as you make it out to be :p.
I mean, it’s a matter of downloading a java.jar and running it. Instructions:
run java command line:
java -jar compiler.jar --js script-src.js --js_output_file script-compiled.jswhere
<compiler.jar>is the full location to thecompiler.jarfile in the downloaded archive,script-src.jsis the full filename of the source file, andscript-compiled.jsis the full filename of the result.