Skip to content

Latest commit

 

History

History
 
 

closure

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Closure Tools TodoMVC Example

The Closure Tools project is an effort by Google engineers to open source the tools used in many of Google's sites and web applications for use by the wider Web development community.

Closure Tools - developers.google.com/closure

Learning Closure Tools

The Closure Tools website is a great resource for getting started.

Here are some links you may find helpful:

Articles and guides from the community:

Get help from other Closure Tools users:

If you have other helpful links to share, or find any of the links above no longer work, please let us know.

Implementation

Note this project breaks with the convention of the others and uses spaces in place of tabs within JavaScript files. This is to comply with the Google style guidelines which the Closure Linter enforces (see Linting below).

Running

A third party build tool called Plovr is used to make running and compiling the code easier. To serve the code for development purposes (the example should run in compiled mode without using Plovr), run the following command from this folder -

npm install npm run serve

You'll also need to change the HTML file so that it references the served files instead of the compiled version (make sure you comment out the compiled version otherwise it will not work), to do this remove the compiled script reference and add the following -

<script src="http://localhost:9810/compile?id=todomvc&mode=RAW"></script>

This will serve up the javascript files in RAW mode which is ideal for rapid development and debugging. To run the compiler, and therefore all the associated type checks etc., change RAW for ADVANCED -

<script src="http://localhost:9810/compile?id=todomvc&mode=ADVANCED"></script>

Linting

Whilst Plovr features many of the tools from the Closure toolkit, one very useful one that's missing is the linter. The linter checks for common mistakes in your code, e.g. unused dependencies, whitespace errors. One restriction with the linter is that it will only permit code that adheres to the Google JavaScript style guide. In this case that means that we break with the project conventions and use space indentation instead of tabs.

The linter must be installed before use, the installation package is included in the build folder and the instructions are available on the linter homepage. Once installed run the following to check for errors -

find . -path ./node_modules -prune -o -name *.js | xargs gjslint

(or whatever floats your OSs boat)

Compiling

To compile the code from the command line run -

npm install npm run build

This will overwrite the js/compiled.js file with the new version, be sure to change the script tag reference in the HTML page.

Credits

This TodoMVC application was created by Chris Price.