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.
Getting Started
The easiest way to install the compiler is with NPM or
Yarn:
yarn global add google-closure-compiler
# OR
npm i -g google-closure-compiler
The package manager will link the binary for you, and you can access the
compiler with:
google-closure-compiler
This starts the compiler in interactive mode. Type:
varx=17+25;
Hit Enter, then Ctrl+Z (on Windows) or Ctrl+D (on Mac/Linux), then Enter
again. The Compiler will respond with the compiled output (using SIMPLE mode
by default):
varx=42;
Downloading from Maven Repository
A pre-compiled release of the compiler is also available via
Maven.
Basic usage
The Closure Compiler has many options for reading input from a file, writing
output to a file, checking your code, and running optimizations. Here is a
simple example of compressing a JS program:
We get the most benefit from the compiler if we give it all of our source
code (see Compiling Multiple Scripts), which
allows us to use ADVANCED optimizations:
Specifies the compilation level to use.
Options: BUNDLE, WHITESPACE_ONLY,
SIMPLE (default), ADVANCED
--env
Determines the set of builtin externs to load.
Options: BROWSER, CUSTOM.
Defaults to BROWSER.
--externs
The file containing JavaScript externs. You may specify multiple
--js
The JavaScript filename. You may specify multiple. The flag name is
optional, because args are interpreted as files by default. You may also
use minimatch-style glob patterns. For example, use
--js='**.js' --js='!**_test.js' to recursively include all
js files that do not end in _test.js
--js_output_file
Primary output filename. If not specified, output is written to stdout.
--language_in
Sets the language spec to which input sources should conform.
Options: ECMASCRIPT3, ECMASCRIPT5,
ECMASCRIPT5_STRICT, ECMASCRIPT_2015,
ECMASCRIPT_2016, ECMASCRIPT_2017,
ECMASCRIPT_2018, ECMASCRIPT_2019,
STABLE, ECMASCRIPT_NEXT
--language_out
Sets the language spec to which output should conform.
Options: ECMASCRIPT3, ECMASCRIPT5,
ECMASCRIPT5_STRICT, ECMASCRIPT_2015,
ECMASCRIPT_2016, ECMASCRIPT_2017,
ECMASCRIPT_2018, ECMASCRIPT_2019,
STABLE
--warning_level (-W)
Specifies the warning level to use.
Options: QUIET, DEFAULT, VERBOSE
See the Google Developers Site for documentation including instructions for running the compiler from the command line.
NodeJS API
You can access the compiler in a JS program by importing
google-closure-compiler:
# Recursively include all js files in subdirs
google-closure-compiler 'src/**.js' --js_output_file out.js
# Recursively include all js files in subdirs, excluding test files.# Use single-quotes, so that bash doesn't try to expand the '!'
google-closure-compiler 'src/**.js''!**_test.js' --js_output_file out.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.
Bazelisk is a wrapper around Bazel that dynamically loads the appropriate
version of Bazel for a given repository. Using it prevents spurious errors that
result from using the wrong version of Bazel to build the compiler, as well as
makes it easy to use different Bazel versions for other projects.
Bazelisk is available through many package managers. Feel free to use whichever
you're most comfortable with.
$ bazelisk build //:compiler_unshaded_deploy.jar
# OR to build everything
$ bazelisk build :all
Testing from a terminal
Tests can be executed in a similar way. The following command will run all tests
in the repo.
$ bazelisk test //:all
There are hundreds of individual test targets, so it will take a few
minutes to run all of them. While developing, it's usually better to specify
the exact tests you're interested in.
Once the compiler has been built, the compiled JAR will be in the bazel-bin/
directory. You can access it with a call to java -jar ... or by using the
package.json script:
If you still think you have found a bug, make sure someone hasn't already
reported it. See the list of
known issues.
If it hasn't been reported yet, post a new issue. Make sure to add enough
detail so that the bug can be recreated. The smaller the reproduction code,
the better.
Suggesting a feature
Consult the FAQ to
make sure that the behaviour you would like isn't specifically excluded
(such as string inlining).
Make sure someone hasn't requested the same thing. See the list of
known issues.
All contributors must sign a contributor license agreement (CLA). A CLA
basically says that you own the rights to any code you contribute, and that
you give us permission to use that code in Closure Compiler. You maintain
the copyright on that code. If you own all the rights to your code, you can
fill out an
individual CLA. If
your employer has any rights to your code, then they also need to fill out a
corporate CLA. If
you don't know if your employer has any rights to your code, you should ask
before signing anything. By default, anyone with an @google.com email
address already has a CLA signed for them.
To make sure your changes are of the type that will be accepted, ask about
your patch on the
Closure Compiler Discuss Group
Fork the repository.
Make your changes. Check out our
coding conventions
for details on making sure your code is in correct style.
Submit a pull request for your changes. A project developer will review your
work and then merge your request into the project.
Closure Compiler License
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.
Netscape Public License and MPL / GPL dual license
Description
A partial copy of Mozilla Rhino. Mozilla Rhino is an
implementation of JavaScript for the JVM. The JavaScript parse tree data
structures were extracted and modified significantly for use by Google's
JavaScript compiler.
Local Modifications
The packages have been renamespaced. All code not
relevant to the parse tree has been removed. A JsDoc parser and static typing
system have been added.
请发表评论