Closure Library

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

Github星跟踪图

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

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

概览

名称与所有者google/closure-library
主编程语言JavaScript
编程语言HTML (语言数: 8)
平台
许可证Apache License 2.0
发布数85
最新版本名称v20230802 (发布于 )
第一版名称v20160106 (发布于 )
创建于2013-08-16 21:54:05
推送于2024-04-29 01:09:33
最后一次提交2023-11-02 10:31:59
星数4.8k
关注者数213
派生数1k
提交数10.3k
已启用问题?
问题数663
打开的问题数207
拉请求数244
打开的拉请求数6
关闭的拉请求数310
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?

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.

去到顶部