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


Apache Superset 4 Updates Reports
15/04/2024

Apache Superset 4 has been released with improvements to the reporting module and redesigned alerts. Superset is a business intelligence web application. It is open source, provides data exploration a [ ... ]



Java Version 22 Released
04/04/2024

JDK 22 is not a Long Term Support release, but is one of the regular releases that are scheduled to arrive every six months. Still, it has got a lot to show for itself.


More News

 

raspberry pi books

 

Comments




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

Last Updated ( Tuesday, 06 September 2016 )