Closure Moves To JavaScript
Written by Alex Denham   
Tuesday, 06 September 2016

Google's Closure compiler is now available in pure JavaScript, and no longer needs Java to run. The new experimental release runs under NodeJS with support for some popular build tools.

The Closure Compiler compiles JavaScript into compact, high-performance code. It removes dead code and rewrites and minimizes what's left so that it downloads and runs quickly. It also checks syntax, variable references, and types, and warns about common JavaScript pitfalls. Nearly every web front end at Google uses it. 

closure

The new version supports new features in ES2015, such as let, const, arrow functions. The compiler also checks syntax, correct use of types, and provides warnings of potential problems.

Writing about the new release on the Google Developer blog, Google's Sam Thorogood said that this isn't a rewrite of Closure in JavaScript, adding:

"Instead, we compile the Java source to JS to run under Node, or even inside a plain old browser."

The JavaScript version is currently experimental, and may not perform in the same way as the native Java version. The Closure team will be working to improve and support it over time.

In order to use the new version, you'll need to add it as a dependency in a project via NPM. Alternatively, you can use it with the Gulp streaming build system. This would involve using gulp.src() or equivalents to load your JavaScript before it can be compiled, according to Thorogood, who said that as the compiler runs in pure JavaScript, it can't load or save files from your file system directly.

 

closure

More Information

Closure Tools

Closure Blog

Related Articles

EMCAScript 2016 Approved

Google's JavaScript Team Proposes "Strong Mode"

 

To be informed about new articles on I Programmer, sign up for our weekly newsletter,subscribe to the RSS feed and follow us on, Twitter, FacebookGoogle+ or Linkedin

 

Banner


Eclipse Foundation Launches Open Regulatory Compliance Working Group
24/09/2024

The Eclipse Foundation has announced the formation of the Open Regulatory Compliance Working Group (ORC WG), which they say will support participants across the open source community in navigating and [ ... ]



Tcl/Tk 9 Released
01/10/2024

Tcl/Tk 9 has been released with changes including 64-bit capacity, and improvements to the handling of Unicode and encodings.


More News

 

kotlin book

 

Comments




or email your comment to: comments@i-programmer.info

Last Updated ( Tuesday, 06 September 2016 )