https://github.com/jishanshaikh4/closure-library
Common JavaScript library including components
https://github.com/jishanshaikh4/closure-library
Last synced: 4 months ago
JSON representation
Common JavaScript library including components
- Host: GitHub
- URL: https://github.com/jishanshaikh4/closure-library
- Owner: jishanshaikh4
- License: other
- Created: 2022-05-31T13:18:40.000Z (about 3 years ago)
- Default Branch: development
- Last Pushed: 2022-06-02T15:56:41.000Z (about 3 years ago)
- Last Synced: 2025-01-20T18:27:25.594Z (5 months ago)
- Language: JavaScript
- Homepage:
- Size: 5.77 MB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING
- License: LICENSE
Awesome Lists containing this project
README
# Closure Library [](https://travis-ci.org/google/closure-library)
Welcome to the JS's personal fork of Closure, which is a powerful, low-level JavaScript library designed
for building complex and scalable web applications. It is used by many
web applications, such as Google Search, Gmail, Google Docs,
Google+, Google Maps, and others.For more information, visit the
[Google Developers](https://developers.google.com/closure/library) or
[GitHub](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
[Generated API Documentation](https://google.github.io/closure-library/api/).See also the
[goog.ui Demos](https://google.github.io/closure-library/source/closure/goog/demos/)## Using with Node.js
Install the [official package](https://www.npmjs.com/package/google-closure-library) from npm.```bash
npm install google-closure-library
```Require the package and use goog.require normally.
```js
require("google-closure-library");goog.require("goog.crypt.Sha1");
var sha1 = new goog.crypt.Sha1();
sha1.update("foobar");
var hash = sha1.digest();
```