Skip to content
This repository has been archived by the owner on Dec 24, 2020. It is now read-only.

Commit

Permalink
Updated the Closure Compiler README
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffpar committed Aug 25, 2017
1 parent c0505ff commit 132b948
Show file tree
Hide file tree
Showing 3 changed files with 87 additions and 97 deletions.
7 changes: 4 additions & 3 deletions bin/README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
Build Tools
---
-----------

This is where all the server-side PHP code used to reside. I've since deleted that code from the project,
because it's all been ported to JavaScript as a collection of [Node Modules](/modules/); e.g.:
because it's all been ported to a collection of [JavaScript Modules](/modules/); e.g.:

- [HTMLOut](/modules/htmlout/)
- [MarkOut](/modules/markout/)
- [DiskDump](/modules/diskdump/)
- [FileDump](/modules/filedump/)

All that remains here is the version of Google's Closure Compiler (and its associated [README](README)) used
All that remains here is the version of Google's Closure Compiler (and its associated [README](compiler.md)) used
to build the client-side JavaScript files -- not because I have any attachment to this particular version, but because
updating requires a lot of testing, and I don't really have a regression test suite yet. Besides, every newer
version of the Closure Compiler I've tried this year (2014) has resulted in slightly *slower* overall performance,
Expand Down
175 changes: 82 additions & 93 deletions bin/compiler.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,51 +5,72 @@
The [Closure Compiler](https://developers.google.com/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
* [Download the latest version](http://dl.google.com/closure-compiler/compiler-latest.zip) ([Release details here](https://github.com/google/closure-compiler/wiki/Releases))
* [Download the latest version](https://dl.google.com/closure-compiler/compiler-latest.zip) ([Release details here](https://github.com/google/closure-compiler/wiki/Releases))
* [Download a specific version](https://github.com/google/closure-compiler/wiki/Binary-Downloads). Also available via:
- [Maven](https://github.com/google/closure-compiler/wiki/Maven)
- [NPM](https://www.npmjs.com/package/google-closure-compiler)
* [Use the JavaScript version](https://github.com/google/closure-compiler-js), with no Java dependency
* See the [Google Developers Site](https://developers.google.com/closure/compiler/docs/gettingstarted_app) for documentation including instructions for running the compiler from the command line.

## Options for Getting Help
1. Post in the [Closure Compiler Discuss Group](https://groups.google.com/forum/#!forum/closure-compiler-discuss)
2. Ask a question on [Stack Overflow](http://stackoverflow.com/questions/tagged/google-closure-compiler)
3. Consult the [FAQ](https://github.com/google/closure-compiler/wiki/FAQ)
1. Post in the [Closure Compiler Discuss Group](https://groups.google.com/forum/#!forum/closure-compiler-discuss).
2. Ask a question on [Stack Overflow](https://stackoverflow.com/questions/tagged/google-closure-compiler).
3. Consult the [FAQ](https://github.com/google/closure-compiler/wiki/FAQ).

## Building it Yourself

Note: The Closure Compiler requires [Java 7 or higher](http://www.java.com/).

### Using [Ant](http://ant.apache.org/)

1. Download the [Ant build tool](http://ant.apache.org/bindownload.cgi).

2. At the root of the source tree, there is an Ant file named ```build.xml```.
To use it, navigate to the same directory and type the command

```
ant jar
```
This will produce a jar file called ```build/compiler.jar```.
### Using [Eclipse](http://www.eclipse.org/)
1. Download and open the [Eclipse IDE](http://www.eclipse.org/).
2. Navigate to ```File > New > Project ...``` and create a Java Project. Give
the project a name.
3. Select ```Create project from existing source``` and choose the root of the
checked-out source tree as the existing directory.
3. Navigate to the ```build.xml``` file. You will see all the build rules in
the Outline pane. Run the ```jar``` rule to build the compiler in
```build/compiler.jar```.
Note: The Closure Compiler requires [Java 7 or higher](https://www.java.com/).

### Using [Maven](https://maven.apache.org/)

1. Download [Maven](https://maven.apache.org/download.cgi).

2. 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>
```

3. 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](#running) 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.

### Using [Eclipse](https://www.eclipse.org/)

1. Download and open the [Eclipse IDE](https://www.eclipse.org/).
2. On the command line, at the root of this project, run `mvn eclipse:eclipse -DdownloadSources=true` to download JARs and build Eclipse project configuration.
3. Navigate to `File > Import > Maven > Existing Maven Projects` and browse to closure-compiler inside of Eclipse.
4. Import both closure-compiler and the nested externs project.
5. Disregard the warnings about maven-antrun-plugin and build errors.
6. In Package Explorer, remove from the build path:
- `src/com/google/javascript/jscomp/debugger/DebuggerGwtMain.java`
- `src/com/google/javascript/jscomp/gwt/`
7. [Exclude the files](https://stackoverflow.com/questions/1187868/how-can-i-exclude-some-folders-from-my-eclipse-project) in the directory `src/com/google/debugging/sourcemap/super` from the project.
8. Build project in Eclipse (right click on the project `closure-compiler-parent` and select `Build Project`).
9. See *Using Maven* above to build the JAR.

## Running

On the command line, at the root of this project, type

```
java -jar build/compiler.jar
java -jar target/closure-compiler-1.0-SNAPSHOT.jar
```

This starts the compiler in interactive mode. Type
Expand All @@ -74,7 +95,15 @@ java -jar compiler.jar --help
```

More detailed information about running the Closure Compiler is available in the
[documentation](http://code.google.com/closure/compiler/docs/gettingstarted_app.html).
[documentation](https://developers.google.com/closure/compiler/docs/gettingstarted_app).


### Run using Eclipse

1. Open the class `src/com/google/javascript/jscomp/CommandLineRunner.java` or create your own extended version of the class.
2. Run the class in Eclipse.
3. See the instructions above on how to use the interactive mode - but beware of the [bug](https://stackoverflow.com/questions/4711098/passing-end-of-transmission-ctrl-d-character-in-eclipse-cdt-console) regarding passing "End of Transmission" in the Eclipse console.


## Compiling Multiple Scripts

Expand All @@ -91,7 +120,7 @@ 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, exclusing test files.
# 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'
```
Expand All @@ -110,32 +139,34 @@ will re-order the inputs automatically.
1. First make sure that it is really a bug and not simply the way that Closure Compiler works (especially true for ADVANCED_OPTIMIZATIONS).
* Check the [official documentation](https://developers.google.com/closure/compiler/)
* Consult the [FAQ](https://github.com/google/closure-compiler/wiki/FAQ)
* Search on [Stack Overflow](http://stackoverflow.com/questions/tagged/google-closure-compiler) and in the [Closure Compiler Discuss Group](https://groups.google.com/forum/#!forum/closure-compiler-discuss)
* Search on [Stack Overflow](https://stackoverflow.com/questions/tagged/google-closure-compiler) and in the [Closure Compiler Discuss Group](https://groups.google.com/forum/#!forum/closure-compiler-discuss)
2. If you still think you have found a bug, make sure someone hasn't already reported it. See the list of [known issues](https://github.com/google/closure-compiler/issues).
3. 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
1. Consult the [FAQ](https://github.com/google/closure-compiler/wiki/FAQ) to make sure that the behaviour you would like isn't specifically excluded (such as string inlining).
2. Make sure someone hasn't requested the same thing. See the list of [known issues](https://github.com/google/closure-compiler/issues).
3. Read up on [what type of feature requests are accepted](https://github.com/google/closure-compiler/wiki/FAQ#how-do-i-submit-a-feature-request-for-a-new-type-of-optimization).
4. Submit your reqest as an issue.
4. Submit your request as an issue.

### Submitting patches
1. 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](http://code.google.com/legal/individual-cla-v1.0.html).
[individual CLA](https://code.google.com/legal/individual-cla-v1.0.html).
If your employer has any rights to your code, then they also need to fill out
a [corporate CLA](http://code.google.com/legal/corporate-cla-v1.0.html).
a [corporate CLA](https://code.google.com/legal/corporate-cla-v1.0.html).
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.
2. To make sure your changes are of the type that will be accepted, ask about your patch on the [Closure Compiler Discuss Group](https://groups.google.com/forum/#!forum/closure-compiler-discuss)
3. Fork the repository.
4. Make your changes.
4. Make your changes. Check out our
[coding conventions](https://github.com/google/closure-compiler/wiki/Contributors#coding-conventions)
for details on making sure your code is in correct style.
5. 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
Expand Down Expand Up @@ -166,7 +197,7 @@ limitations under the License.

<tr>
<td>URL</td>
<td>http://www.mozilla.org/rhino</td>
<td>https://www.mozilla.org/rhino</td>
</tr>

<tr>
Expand Down Expand Up @@ -198,19 +229,14 @@ system have been added.</td>
### Args4j

<table>
<tr>
<td>Code Path</td>
<td><code>lib/args4j.jar</code></td>
</tr>

<tr>
<td>URL</td>
<td>https://args4j.dev.java.net/</td>
</tr>

<tr>
<td>Version</td>
<td>2.0.26</td>
<td>2.33</td>
</tr>

<tr>
Expand All @@ -233,19 +259,14 @@ options/arguments in your CUI application.</td>
### Guava Libraries

<table>
<tr>
<td>Code Path</td>
<td><code>lib/guava.jar</code></td>
</tr>

<tr>
<td>URL</td>
<td>https://github.com/google/guava</td>
</tr>

<tr>
<td>Version</td>
<td>18.0</td>
<td>20.0</td>
</tr>

<tr>
Expand All @@ -267,19 +288,14 @@ options/arguments in your CUI application.</td>
### JSR 305

<table>
<tr>
<td>Code Path</td>
<td><code>lib/jsr305.jar</code></td>
</tr>

<tr>
<td>URL</td>
<td>http://code.google.com/p/jsr-305/</td>
<td>https://github.com/findbugsproject/findbugs</td>
</tr>

<tr>
<td>Version</td>
<td>svn revision 47</td>
<td>3.0.1</td>
</tr>

<tr>
Expand All @@ -301,19 +317,14 @@ options/arguments in your CUI application.</td>
### JUnit

<table>
<tr>
<td>Code Path</td>
<td><code>lib/junit.jar</code></td>
</tr>

<tr>
<td>URL</td>
<td>http://sourceforge.net/projects/junit/</td>
<td>https://sourceforge.net/projects/junit/</td>
</tr>

<tr>
<td>Version</td>
<td>4.11</td>
<td>4.12</td>
</tr>

<tr>
Expand All @@ -335,19 +346,14 @@ options/arguments in your CUI application.</td>
### Protocol Buffers

<table>
<tr>
<td>Code Path</td>
<td><code>lib/protobuf-java.jar</code></td>
</tr>

<tr>
<td>URL</td>
<td>http://code.google.com/p/protobuf/</td>
<td>https://github.com/google/protobuf</td>
</tr>

<tr>
<td>Version</td>
<td>2.5.0</td>
<td>3.0.2</td>
</tr>

<tr>
Expand All @@ -370,19 +376,14 @@ an encoding of structured data.</td>
### Truth

<table>
<tr>
<td>Code Path</td>
<td><code>lib/truth.jar</code></td>
</tr>

<tr>
<td>URL</td>
<td>https://github.com/google/truth</td>
</tr>

<tr>
<td>Version</td>
<td>0.24</td>
<td>0.32</td>
</tr>

<tr>
Expand All @@ -404,21 +405,14 @@ an encoding of structured data.</td>
### Ant

<table>
<tr>
<td>Code Path</td>
<td>
<code>lib/ant.jar</code>, <code>lib/ant-launcher.jar</code>
</td>
</tr>

<tr>
<td>URL</td>
<td>http://ant.apache.org/bindownload.cgi</td>
<td>https://ant.apache.org/bindownload.cgi</td>
</tr>

<tr>
<td>Version</td>
<td>1.8.1</td>
<td>1.9.7</td>
</tr>

<tr>
Expand All @@ -441,19 +435,14 @@ without make's wrinkles and with the full portability of pure java code.</td>
### GSON

<table>
<tr>
<td>Code Path</td>
<td><code>lib/gson.jar</code></td>
</tr>

<tr>
<td>URL</td>
<td>https://code.google.com/p/google-gson/</td>
<td>https://github.com/google/gson</td>
</tr>

<tr>
<td>Version</td>
<td>2.2.4</td>
<td>2.7</td>
</tr>

<tr>
Expand Down
2 changes: 1 addition & 1 deletion modules/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ permalink: /modules/
---

PCjs Project Modules
===
====================

This folder contains all the JavaScript modules for the [PCjs Project](https://github.com/jeffpar/pcjs).
It is our *private* counterpart to the **node_modules** folder, where all *public* Node modules are typically installed.
Expand Down

0 comments on commit 132b948

Please sign in to comment.