Top "Google-closure-compiler" questions

Google Closure Compiler compiles a typed superset of modern JavaScript to a target version of JavaScript, applying type checking, dead code elimination, minification and other improvements.

Running a command in a Grunt Task

I'm using Grunt (task-based command line build tool for JavaScript projects) in my project. I've created a custom tag and …

javascript templates gruntjs continuous-integration google-closure-compiler
How to indicate param is optional using inline JSDoc?

According to the JSDoc wiki for @param you can indicate a @param is optional using /** @param {String} [name] */ function getPerson(…

javascript google-closure-compiler jsdoc
How to document a string type in jsdoc with limited possible values

I am having a function that accepts one string parameter. This parameter can have only one of a few defined …

google-closure-compiler google-closure jsdoc code-documentation
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_…

javascript google-closure google-closure-compiler
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 …

javascript jquery minify google-closure google-closure-compiler
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 …

jquery google-closure google-closure-compiler
Does it make sense to minify code used in NodeJS?

I was wondering, since Clojure Compiler and UglifyJS not only optimize code for size but also for performance (although I …

javascript node.js minify google-closure-compiler uglifyjs
TypeScript performance (asm.js, closure compiler) and overhead

I'm looking into using TypeScript combined with a client-side MVC (most likely Backbone.js + Marionette.js or Ember.js) for …

javascript performance typescript google-closure-compiler asm.js
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 …

javascript minify google-closure google-closure-compiler