tree: f0f8ddebc0d3128829689da46580794b53315c69 [path history] [tgz]
  1. closure/
  2. closure-deps/
  3. doc/
  4. scripts/
  5. third_party/
  6. .gitignore
  7. .npmignore
  8. .travis.yml
  9. all_tests.html
  10. alltests.js
  11. AUTHORS
  12. browser_capabilities.js
  13. CONTRIBUTING
  14. LICENSE
  15. OWNERS
  16. package.json
  17. protractor.conf.js
  18. protractor_spec.js
  19. README.chromium
  20. README.md
  21. sauce_browsers.json
third_party/google-closure-library/README.md

Closure Library Build Status

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 Google Developers or GitHub sites.

Download the latest stable version on our releases page.

Developers, please see the Generated API Documentation.

See also the goog.ui Demos

Using with Node.js

Install the official package 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();

Contributing

Please read the CONTRIBUTING for details on how to contribute to this project.