为什么 Google 的 Closure 库没有托管在他们的 CDN 上?

发布于 2024-08-21 03:19:43 字数 268 浏览 10 评论 0原文

Google 在其 CDN 上托管了许多 JavaScript 库,例如 jQuery 和 dojo。由于某种原因,他们自己的 Google Closure 库似乎未包含在内。 Closure 库有托管版本吗?

Google hosts a number of JavaScript libraries such as jQuery and dojo on their CDN. For some reason, their own Google Closure library does not seem to be included. Is there a hosted version of the Closure library?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

比忠 2024-08-28 03:19:43

不包含它是因为 Closure 旨在与编译器一起使用;托管版本需要包含整个库,并且无法实现构建仅包含您需要的功能的缩小库的目的。

It's not included because Closure is intended to be used with the compiler; a hosted version would need to include the entire library and defeat the purpose of building minified libraries containing only the features you need.

久隐师 2024-08-28 03:19:43

您可以链接到他们的存储库:

<script src='https://cdn.rawgit.com/google/closure-library/master/closure/goog/base.js'></script>

足以用于演示或本地开发。
正如其他答案所建议的,生产应该使用编译代码,这是非常值得的。

You can link to their repository:

<script src='https://cdn.rawgit.com/google/closure-library/master/closure/goog/base.js'></script>

good enough for demos or local development.
As other answer suggested, production should use compiled code, it is well worth it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文