Tagged Questions

Google Closure Tools is a set of tools to help developers build rich web applications with JavaScript.

learn more… | top users | synonyms

27
votes
11answers
12k views

jQuery compiled with Google Closure Compiler

Has anyone compiled jQuery against Google's newly-released Closure compiler? There has been reported huge savings in code size. I'm curious what the benefit is if jQuery was compiled with it.
25
votes
5answers
5k views

Should I use the YUI Compressor or the new Google Closure compiler to compress my JavaScript?

YUI Compressor was the consensus best tool for minimizing, but Closure seems like it could be better.
16
votes
3answers
2k views

Does Google Closure Compiler ever decrease performance?

I'm writing a Google Chrome extension. As the JavaScript files are loaded from disk, their size barely matters. But I've been using Google Closure Compiler anyway, because apparently it can make ...
11
votes
1answer
213 views

What is the proper way to minify strings using Google's Closure Compiler?

I'm in the middle of writing a jQuery plugin, and I'd like to shrink the size of my script by replacing commonly used CSS property strings with enums. However, Google's Closure Compiler replaces all ...
11
votes
1answer
310 views

Why does Google's Closure Compiler leave a few unnecessary spaces or line breaks?

I've noticed that every time I use Google's Closure Compiler Service, it leaves a few unnecessary spaces in the compiled code presented on the right-hand side of the page. These correspond to line ...
9
votes
5answers
517 views

How to force google closure compiler to keep “use strict”; in the compiled js code?

If you're using the module pattern and have something like this: (function () { "use strict"; // this function is strict... }()); and compile the code using the Google Closure Compiler, the ...
9
votes
5answers
536 views

Exclude debug javascript code during minification

I'm looking into different ways to minify my javascript code including the regular JSMin, Packer, and YUI solutions. I'm really interested in the new Google Closure Compiler, as it looks exceptionally ...
8
votes
3answers
335 views

Why doesn't Closure Compiler recognize type declarations inside a self-executing anonymous function?

I'm getting a lot of "Unknown type" warnings when running a fairly large library through Closure Compiler, and they seem to occur when my types are declared in self-executing anonymous functions. ...
7
votes
3answers
278 views

What is the current state of JavaScript static type checking?

I know that the Google Closure Compiler does type checking—but are there any alternatives, preferably that aren't so tightly coupled with a library and optimizer? If not, is there any way to have the ...
7
votes
3answers
3k views

Integrate Google closure compiler with Eclipse IDE?

Does anybody know how to integrate Google closure compiler with Eclipse IDE? The thing I was trying to do is to configure Google closure compiler as a external tool for Eclipse IDE. Then I would be ...
7
votes
5answers
3k views

Google Closure Compiler with jQuery applications

I have a lot of time invested in jquery and a large application built with it. Recently I've been reviewing Google Closure Library, but at this time have found it to be not nearly as elegant as ...
6
votes
3answers
331 views

Getting closure-compiler and Node.js to play nice

Are there any projects that used node.js and closure-compiler (CC for short) together? The official CC recommendation is to compile all code for an application together, but when I compile some ...
6
votes
1answer
70 views

Why does Closure compiler rename properties of an extern type?

I put this in an externs file: /** @typedef {{english: string, spanish: string}} */ var SpanishNoun; Then I have javascript: /** * @param {SpanishNoun} n */ exp1.processData3 = function (n) { ...
5
votes
4answers
174 views

Testing out the performance gain of compressing JavaScript code

I have used 5 JavaScript compressors to compress a JavaScript library (JSMin, YUI compressor, Packer, closure compiler and UglifyJS) Now I know that closure compiler is the winner in reducing the ...
5
votes
3answers
143 views

Closure Compiler - can a++ >= 3 become ++a > 3?

I admit that I asked a question about why Closure Compiler does not shorten certain code which looks shortenable at first sight a few days ago already, but that reason is not applicable in this case ...
5
votes
3answers
276 views

How to apply Google Closure to my entire web page?

Google has the very nice JavaScript compressor called "Closure" http://closure-compiler.appspot.com/home But it's a pain to use for inline JavaScript within an HTML file. Question: Does an online ...
5
votes
5answers
935 views

Equivalent of “Google Closure Compiler” for HTML?

Is there an equivalent of Google's Closure Compiler for HTML minimizing?
5
votes
8answers
3k views

How to use Google's Closure to compile JavaScript

Google just released Closure, which is a compiler to minify JavaScript. On the product site, it says "The Closure Compiler has also been integrated with Page Speed". How do I use Page Speed to ...
4
votes
2answers
264 views

How to take advantage of closure compiler when using a library?

I've recently been playing with the awesome tool from google that does some code-optimization and partial execution, for instance it would take something like: //Just an alias for an elementByID ...
4
votes
4answers
386 views

Integrating Google Closure Compiler with MS Build on a build server

I'm looking into ways of minifying javascript files as part of our CI process, so that we can use the un-minified files in development and have them automatically compressed when deployed to staging ...
4
votes
2answers
123 views

Why does Closure Compiler not shorten this?

I'm not sure whether this is just a bug or an intended feature. Basically, I have this tiny function (I now see end is colored blue here but this works just fine, if I rename it to something else I ...
4
votes
1answer
554 views

Closure compiler app using jquery

I have manage to create a small size js application that uses jQuery and jQuery UI using google's closure compiler with advanced optimizations. Just for clarity: I have not compiled jQuery itself, ...
4
votes
2answers
157 views

How do I get the Closure Compiler to stop complaining about union types when calling a function?

I'm seeing this in particular when using the jQuery-1.4.3 externs file. The javadocs for that reads /** * @param {(string|number|function(number,number))=} arg1 * @return {(number|jQueryObject)} ...
4
votes
3answers
540 views

How do I use Google Closure compiler to remove unused JavaScript code?

How do I use Google Closure compiler to remove unused code? I am using the JQuery Slider control but am not using anything else within JQuery. So I read that Google Closure compiler in Advanced mode ...
4
votes
3answers
413 views

How can I easily maintain a cross-file JavaScript Library Development Environment

I have been developing a new JavaScript application which is rapidly growing in size. My entire JavaScript Application has been encapsulated inside a single function, in a single file, in a way ...
4
votes
2answers
709 views

dojo and google closure compiler

I noticed that dojo 1.4.0 support google compiler in simple mode, will it eventually support advance mode anytime soon?
3
votes
1answer
106 views

How to capture closure compiler output in PowerShell?

I am typing this at the PowerShell command line: java -jar closure-compiler.jar --js temp1.js --js_output_file temp2.js and it generates this error output: temp1.js:359: WARNING - Suspicious code. ...
3
votes
1answer
67 views

Can I tell the Closure compiler to, for specific types only, stop renaming properties?

This question follows: Why does Closure compiler rename properties of an extern type? John's answer to that question brings up this second question. If I declare the extern type as suggested: /** ...
3
votes
1answer
148 views

closure compiler / uglifyjs - this.function name not shortened?

If I run this piece of code through closure compiler or uglifyjs, this.init is not shortened.. Can anyone tell me why that is? function test() { var v = "abc"; this.init = function() { ...
3
votes
3answers
130 views

Is there an equivalent to Google Closure's optimisations for javascript, for Java?

We see in the following blog entry: http://blog.fogus.me/2011/07/21/compiling-clojure-to-javascript-pt1/ some pretty incredible syntax transformations, simplifications done to the javascript ...
3
votes
2answers
438 views

Closure Compiler Warning `dangerous use of the global this object`?

Dear folks, Closure Compiler gives this warnings in Advanced Mode, underlining {this. JSC_USED_GLOBAL_THIS: dangerous use of the global this object at line 200 character 33 hovers[i4].onfocus = ...
3
votes
2answers
286 views

Is there a Google Closure Compiler plugin for Notepad++

I looked around on "the Internet" but could not find a proper answer: Is there a Google Closure Compiler plugin for Notepad++ or a way to get it working with NppExec.Execute (F6-key).
3
votes
4answers
522 views

difference between “void 0 ” and “undefined”

I'm using "Closure Compiler", when compiling my scripts I spend the following: Before compiling: // ==ClosureCompiler== // @compilation_level SIMPLE_OPTIMIZATIONS // @output_file_name default.js // ...
3
votes
2answers
557 views

How to prevent Closure Compiler from renaming “true”, “false” and “null”

Google Closure Compiler renames all "true", "false" and "null" occurences in code like; var s = true, x = null, V = false; and uses these shorthands instead; in conditions such as; if ...
3
votes
2answers
399 views

How to auto-generate externs for the Google Closure Compiler

Suppose you are working in a javascript project with several external library dependencies, and want to compile your sources using the Google Closure Compiler in ADVANCED_OPTIMIZATIONS mode. Since in ...
3
votes
2answers
284 views

Find IE-breaking ECMAScript/JavaScript errors

I work on a relatively huge ECMAScript codebase (> 60,000 LOC) and we tend to struggle a bit with detecting errors for our dreaded friend Internet Explorer (especially 6 and 7). At the moment, I've ...
3
votes
2answers
524 views

Google Closure Compiler 100% typed

How can I get my application to be 100% typed in regard to google closure compiler? I already tagged everything with jsdoc comments. Is it even possible to get 100? I'm at 64,6%
3
votes
2answers
1k views

is jQuery 1.4.2 compatible with Closure Compiler?

According to the official release statement version 1.4 has been re-written to be compressed with Closure Compiler yet when I use the online version of closure compiler I get 130 warnings. This is ...
2
votes
2answers
71 views

Closure compiler doesn't virtualize prototype functions contained inside anonymous wrapper

I'm experimenting with advanced mode of Google Closure Compiler and it seems like small simple functions are inlined only when not wrapped in an anonymous wrapper. Looking for an explanation/solution ...
2
votes
1answer
60 views

How do I annotate my usage of “this” to the Closure Compiler in the following Javascript function?

I am using the following function to modify the behavior of a specific instance of a Javascript array. How can I annotate the code for Closure Compiler? ...
2
votes
1answer
107 views

Google Closure Compiler - Dead code removal based on externs

I'm trying to use the Google Closure Compiler to split my application code based on where it's going to be run (on the server vs the client) via a single variable. In this example, everything that's ...
2
votes
1answer
105 views

Best way to share JS between browser and node.js when using Google Closure compiler

I'm developing a networked application between the browser and a server running node.js. I'm sharing a lot of code right now, but when I actually deploy this I'd like the client to only get client ...
2
votes
1answer
150 views

How do you use wro4j together with the Closure library and compiler?

I followed the instructions at here, though I substituted 1.3.8 for the version, and I'm able to compile my JS in a wildcard folder as I wanted, however, I'm not quite sure where to place the closure ...
2
votes
3answers
139 views

Which tools does jQuery use to compress its source code

Which tools does jQuery use to compress its source code in version 1.6.2?
2
votes
1answer
187 views

Closure Compiler ADVANCED_OPTIMIZATIONS and function encapsulation

Using Google Closure Compiler (ADVANCED_OPTIMIZATIONS), it seems that when code is encapsulated in a function, there are certain advanced optimizations that cannot be done. (function(){ var db = {}; ...
2
votes
1answer
144 views

Google Closure Compiler returning in different encoding?

Google Closure Compiler returns the following code: {"compiledCode":"vaporize\u003dfunction(){var a\u003d12+Math.random()*10;a\u003e9\u0026\u0026console.log(\"wow, k is bigger than j\");return ...
2
votes
1answer
190 views

Google Closure Compiler moved ?? It's giving a 302 error

I'm using nodejs 0.4.7 to make the request, this is my code: var post_data = JSON.stringify({ 'compilation_level' : 'ADVANCED_OPTIMIZATIONS', 'output_format': 'json', ...
2
votes
4answers
527 views

Use closure compiler to remove unused parts of jQuery

Is it possible to use the closure compiler to remove unused parts of jQuery? I have a script which only uses jQuery's networking (json) functions, and I'd like a minified script which removes ...
2
votes
2answers
340 views

Using Google Closure Compiler can you exclude a section of source code from the compiled version?

I recently built a project using the Dojo toolkit and loved how you can mark a section of code to only be included in the compiled version based on an arbitrary conditional check. I used this to ...
2
votes
2answers
254 views

Why a JSC_MISSING_PROVIDE_ERROR in “Hello World” plovr example?

I'm trying to get started with plovr using the simple "Hello World" example in Closure: The Definitive Guide by Michael Bolin. But my build produces an error. Can anyone out there enlighten me as to ...

1 2 3