Closure Library是一个强大的低级JavaScript库,专为构建复杂和可扩展的Web应用程序而设计。 它被许多Google Web应用程序(如Google搜索,Gmail,Google文档,Google+,Google地图等)使用。
Closure Library
Google的公共JavaScript库。(Google's common JavaScript library. )
Github星跟踪图
Closure Library与服务器无关,适用于Closure Compiler。
主要指标
- 概览
-
名称与所有者 google/closure-library 主编程语言 JavaScript 编程语言 HTML (语言数: 8) 平台 许可证 Apache License 2.0 - 所有者活动
-
创建于 2013-08-16 21:54:05 推送于 2024-08-01 20:51:28 最后一次提交 2024-08-01 09:53:33 发布数 85 最新版本名称 v20230802 (发布于 ) 第一版名称 v20160106 (发布于 ) - 用户参与
-
星数 4.9k 关注者数 208 派生数 1k 提交数 10.3k 已启用问题? 问题数 663 打开的问题数 0 拉请求数 244 打开的拉请求数 0 关闭的拉请求数 332 - 项目设置
-
已启用Wiki? 已存档? 是复刻? 已锁定? 是镜像? 是私有?
Closure Library 
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.