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-26 14:05:23
最后一次提交2023-11-02 10:31:59
星數4.8k
關注者數213
派生數1k
提交數10.3k
已啟用問題?
問題數663
打開的問題數207
拉請求數244
打開的拉請求數9
關閉的拉請求數305
已啟用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.

去到頂部