Tagged Questions

Google Closure is a framework for writing large-scale applications in Javascript. It includes a large library of components, a Javascript compiler, and a templating system for generating output.

learn more… | top users | synonyms

107
votes
10answers
26k views

What does Google Closure Library offer over jQuery?

Considering business background community support available extensions default set of features simplicity of use and reliability why do you prefer one over the another?
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.
17
votes
1answer
7k views

Google Closure minifier online?

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 ...
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
519 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
2answers
707 views

getting started with Google Closure if you don't care about minifying/compiling?

If you don't care about minifying your code, is there a way to get started using the Google Closure library without having to set up a subversion client and use the compiler? The Notepad sample ...
8
votes
1answer
311 views

How do I add my own JavaScript libs to ClojureScript?

I want to write a Google Chrome extension, using ClojureScript. With ClojureScript I can use all the Google Closure libs, but afaik access to the Chrome browser is not included in those libs. So I ...
8
votes
6answers
1k views

How can I load my own js module with goog.provide and goog.require?

We are trying to switch the packaging for our project from dojo to google closure, but we haven't had any luck so far. Here is a simple example that illustrates what we are trying to accomplish: ...
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
1answer
82 views

Why does this line of Google closure look like it looks?

Why does this javascript line looks like this? I mean, why there's an extra + near the end? '<script type="text/javascript" src="' + src + '"></' + 'script>' Source: ...
6
votes
2answers
1k views

Is there a way to generate Javascript API documentation like the Google Closure Library API Documentation?

I'm trying to find a tool that generates HTML documentation for my Javascript source code. Does anyone know if the tool that Google uses to generate the interface at the following URLs is open ...
5
votes
1answer
506 views

GWT VS Google Closure, what is the difference?

If I understand correctly, both GWT and Google Closure are JS API's for building web applications. What is the difference between them?
5
votes
1answer
236 views

Does the Javascript community have a dependency retrieval (like maven or gem)?

Java has maven or ivy to retrieve dependent jars from various public repositories. Ruby has even better dependency retrieval tools: gem and bundle. Does the Javascript community have any equivalent ...
5
votes
2answers
573 views

Choosing MooTools over Google closure?

I am in a process to select javascript library for our new web application. This app is not very UI heavy but has forms, reports, search, calendars, tabs and target multiple countries like most web ...
5
votes
0answers
260 views

Google closure editor open source projects and plugins

Anyone know where i could find good plugins for the closure editor. So far i only found: https://github.com/yinhm/google-closure-editor-image and ...
5
votes
2answers
949 views

Why isn't Google's Closure library hosted on their CDN?

Google hosts a number of JavaScript libraries such as jQuery and dojo on their CDN. For some reason, their own Google Closure library does not seem to be included. Is there a hosted version of the ...
5
votes
5answers
936 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 ...
5
votes
2answers
886 views

What are the best/more stable features of the Google Closure Library

In November 2009 Google announced the release of Closure Tools which include the Closure Library. According to this post google closure library contains some battle-hardened parts and others more ...
4
votes
1answer
547 views

Using Google Closure Templates with jQuery

We are starting to create an application using JavaScript and HTML5 which will use rest API to access server resources taking the advantage of jQuery awesomeness and easiness which our dev team is ...
4
votes
4answers
387 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
159 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
545 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
680 views

Using Google Closure compiler

I am using jQuery and I have all of my JS code in application.js file. When I compile "application.js" with the Google Closure compiler (using the advance options) I get a js file with no errors and ...
3
votes
3answers
265 views

Jquery vs Google Closure va GWT Pros & cons for large web application development

I am about to start developing a large web application.Which contains media(video,audio & images) and a large user base. The traffic on website may also goes very high. So here i am a little bit ...
3
votes
1answer
194 views

Google Closure - Form data to json object

Is it possible to get JSON from form data? I can get data map or string representation only. var form = goog.dom.getElement('myform'); console.log(goog.dom.forms.getFormDataString(form));
3
votes
4answers
526 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
195 views

TinyMCE Paths, How to specify where to load things like editor_plugin.js

I installed TinyMCE, everything was working great. I then used Google Closure to package my site's JavaScript along with TinyMCE_src The problem I'm having is that TinyMCE is now making calls to: ...
3
votes
2answers
402 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 ...
2
votes
2answers
194 views

Implementing EventTarget on custom objects

Using Closure Library, you can give any object the ability to dispatch events extending goog.events.EventTarget. Is this currently possible using Dart libraries? I imagine it would look like this: ...
2
votes
3answers
82 views

Understanding “this” context with goog.bind and goog.net.Xhrio.send

I am a little bit confused as to what happen when I call the following code: goog.net.XhrIo.send("/welcome", goog.bind(this.handleWelcome, this)); I have a function with this signature: ...
2
votes
1answer
111 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
0answers
34 views

Is there a way to get unclean contents from a google closure Field?

I have a text editor that provides both a source code and Rich Text editor. Let's say I have the following in my text area <p>A Paragraph</p> <script type="text/javascript"> ...
2
votes
1answer
193 views

Displaying a google map in google closure

How can I display a map in Google Closure. There seems to be many UI widgets but none for showing a map
2
votes
1answer
66 views

Nesting closure templates within another template

I'm sure there should be some way to render another template from within a template so I don't have to copy paste similar looking blocks. I'm just not able to figure it out.
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
2answers
223 views

Is it possible to create objects within Closure templates?

I've just started doing some work with Google Closure, and I'd like to move the creation of select fields into its own template, and call into that template with something like: {call ...
2
votes
3answers
251 views

ASP.NET MVC3 and right opinionated client side software development model?

I am currently evaluating how to create and maintain MVC3 web applications that have a level of client side richness we've never attempted before. I realize this will require a much more thought out ...
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
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 ...
2
votes
1answer
376 views

problems creating custom event dispatcher in google closure library

I'm trying to create a custom event dispatcher in google closure js library. I'm basing this code off of the animation class in the fx folder, yet I keep getting this error.. "goog.events is ...
2
votes
2answers
239 views

how do I break up a regular expression in JavaScript

String.prototype.is_email = function() { return ...
2
votes
2answers
320 views

Is it possible to use Closure Compiler ADVANCED_OPTIMIZATIONS with jQuery?

I keep getting errors that the function (renamed) does not exist for the given object. Is there a release or setting or something to make it work?
2
votes
4answers
501 views

Preventing closure compiler from renaming certain variables

I have a javascript file with a global object that must not be renamed (_gat from the Google Analytics async tracker). This object must not be renamed by the Google Closure Compiler as Google ...
2
votes
1answer
416 views

Documentation generator for Google Closure Javascript

I want to generate a HTML-Documentation for my Javascript code. The comments in my code are written in a format, the Google Closure Compiler can use to optimize my code. Example: /** * Class for ...
2
votes
1answer
15k views

How to solve “cannot call method … to undefined” in google closure (creating simple toolbar)?

below is a complete HTML source for building a simple toolbar with google closure. Gives an error message in Chrome: Uncaught TypeError: Cannot call method 'addChild' of undefined at the spot marked ...
2
votes
1answer
333 views

How to make a graphics element draggable with google-closure?

How to make google closure graphics elements draggable and respond to events otherwise? Here's what I have so far. I have the circle, but can't drag it yet :). Thanks. goog.require('goog.dom'); ...
2
votes
1answer
989 views

how to hide/show dom element in google closure

domA.style.display = "none"; domA.style.display = "block; I could not find such functions in the library, but I guess they must have it somewhere.
1
vote
3answers
38 views

Calling onclick with local variable

First, apologies for asking something that must be answered here somewhere (I've been looking!) I want to do this: var i; for (i = 0; i < 5; i++) { ... // Add an anchor to the dom ... ...

1 2 3