The Closure Compiler is a tool for making JavaScript download and run faster. It is a true compiler for JavaScript. Instead of compiling from a source language to machine code, it compiles from JavaScript to better JavaScript. It parses your JavaScript, analyzes it, removes dead code and rewrites and minimizes what's left. It also checks syntax, variable references, and types, and warns about common JavaScript pitfalls.
Note: The Closure Compiler requires Java 8 or higher.
Download Maven.
Add sonatype snapshots repository to ~/.m2/settings.xml
:
<profile> <id>allow-snapshots</id> <activation><activeByDefault>true</activeByDefault></activation> <repositories> <repository> <id>snapshots-repo</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> <releases><enabled>false</enabled></releases> <snapshots><enabled>true</enabled></snapshots> </repository> </repositories> </profile>
On the command line, at the root of this project, run mvn -DskipTests
(omit the -DskipTests
if you want to run all the unit tests too).
This will produce a jar file called target/closure-compiler-1.0-SNAPSHOT.jar
. You can run this jar as per the Running section of this Readme. If you want to depend on the compiler via Maven in another Java project, use the com.google.javascript/closure-compiler-unshaded
artifact.
Running mvn -DskipTests -pl externs/pom.xml,pom-main.xml,pom-main-shaded.xml
will skip building the GWT version of the compiler. This can speed up the build process significantly.
Project > Build automatically
during this process.mvn eclipse:eclipse -DdownloadSources=true
to download JARs and build Eclipse project configuration.mvn clean
and mvn -DskipTests
to ensure AutoValues are generated and updated.File > Import > Maven > Existing Maven Projects
and browse to closure-compiler..classpath
in closure-compiler-parent. Delete the <classpathentry ... kind="src" path="src" ... />
line, then add:<classpathentry excluding="com/google/debugging/sourcemap/super/**|com/google/javascript/jscomp/debugger/gwt/DebuggerGwtMain.java|com/google/javascript/jscomp/gwt/|com/google/javascript/jscomp/resources/super-gwt/**" kind="src" path="src"/> <classpathentry kind="src" path="target/generated-sources/annotations"/>
closure-compiler-parent
and select Build Project
).On the command line, at the root of this project, type
java -jar target/closure-compiler-1.0-SNAPSHOT.jar
This starts the compiler in interactive mode. Type
var x = 17 + 25;
then hit “Enter”, then hit “Ctrl-Z” (on Windows) or “Ctrl-D” (on Mac or Linux) and “Enter” again. The Compiler will respond:
var x=42;
The Closure Compiler has many options for reading input from a file, writing output to a file, checking your code, and running optimizations. To learn more, type
java -jar compiler.jar --help
More detailed information about running the Closure Compiler is available in the documentation.
src/com/google/javascript/jscomp/CommandLineRunner.java
or create your own extended version of the class.If you have multiple scripts, you should compile them all together with one compile command.
java -jar compiler.jar --js_output_file=out.js in1.js in2.js in3.js ...
You can also use minimatch-style globs.
# Recursively include all js files in subdirs java -jar compiler.jar --js_output_file=out.js 'src/**.js' # Recursively include all js files in subdirs, excluding test files. # Use single-quotes, so that bash doesn't try to expand the '!' java -jar compiler.jar --js_output_file=out.js 'src/**.js' '!**_test.js'
The Closure Compiler will concatenate the files in the order they're passed at the command line.
If you're using globs or many files, you may start to run into problems with managing dependencies between scripts. In this case, you should use the Closure Library. It contains functions for enforcing dependencies between scripts, and Closure Compiler will re-order the inputs automatically.
Copyright 2009 The Closure Compiler Authors.
Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.