Closure Library

Google的公共JavaScript库。(Google's common JavaScript library. )

Github stars Tracking Chart

Closure Library是一个强大的低级JavaScript库,专为构建复杂和可扩展的Web应用程序而设计。 它被许多Google Web应用程序(如Google搜索,Gmail,Google文档,Google+,Google地图等)使用。

Closure Library是一个广泛,经过良好测试,模块化和跨浏览器的JavaScript库。 您可以从大量可重复使用的UI小部件和控件以及用于DOM操作、服务器通信、动画、数据结构、单元测试、富文本编辑等的较低级实用程序中拉取所需内容。
Closure Library与服务器无关,适用于Closure Compiler。

Overview

Name With Ownergoogle/closure-library
Primary LanguageJavaScript
Program languageHTML (Language Count: 8)
Platform
License:Apache License 2.0
Release Count85
Last Release Namev20230802 (Posted on )
First Release Namev20160106 (Posted on )
Created At2013-08-16 21:54:05
Pushed At2024-04-29 01:09:33
Last Commit At2023-11-02 10:31:59
Stargazers Count4.8k
Watchers Count213
Fork Count1k
Commits Count10.3k
Has Issues Enabled
Issues Count663
Issue Open Count207
Pull Requests Count244
Pull Requests Open Count6
Pull Requests Close Count310
Has Wiki Enabled
Is Archived
Is Fork
Is Locked
Is Mirror
Is Private

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.

To the top