closure-builder
Version:
Simple Closure, Soy and JavaScript Build system
39 lines (26 loc) • 1.24 kB
Markdown
Closure Library is a powerful, low-level JavaScript library designed
for building complex and scalable web applications. It is used by many
Google web applications, such as Google Search, Gmail, Google Docs,
Google+, Google Maps, and others.
For more information, visit the
[](https://developers.google.com/closure/library) or
[](https://github.com/google/closure-library) sites.
Download the latest stable version on our [releases page](https://github.com/google/closure-library/releases).
Developers, please see the
[](http://google.github.io/closure-library/api/).
See also the
[](http://google.github.io/closure-library/source/closure/goog/demos/)
Install the [official package](https://www.npmjs.com/package/google-closure-library) from npm.
```
npm install google-closure-library
```
Require the package and use goog.require normally.
```
require("google-closure-library");
goog.require("goog.crypt.Sha1");
var sha1 = new goog.crypt.Sha1();
sha1.update("foobar");
var hash = sha1.digest();
```