|
1 | 1 |
|
2 | 2 | # Closure Library
|
3 | 3 |
|
4 |
| -Closure Library is a powerful, low-level JavaScript library designed |
5 |
| -for building complex and scalable web applications. It is used by many |
6 |
| -Google web applications, such as Google Search, Gmail, Google Docs, |
7 |
| -Google+, Google Maps, and others. |
| 4 | +***Closure Library is currently in maintenance mode and will be sunset over the |
| 5 | +on August 1, 2024. We no longer see it as meeting the needs of modern JavaScript |
| 6 | +development, and we recommend that users look for alternative solutions.*** |
8 | 7 |
|
9 |
| -For more information, visit the |
10 |
| -[Google Developers](https://developers.google.com/closure/library) or |
11 |
| -[GitHub](https://github.com/google/closure-library) sites. |
| 8 | +Please see [#1214](https://github.com/google/closure-library/issues/1214) for |
| 9 | +more details. |
12 | 10 |
|
13 |
| -Download the latest stable version on our [releases page](https://github.com/google/closure-library/releases). |
14 |
| - |
15 |
| -Developers, please see the |
16 |
| -[Generated API Documentation](https://google.github.io/closure-library/api/). |
17 |
| - |
18 |
| -See also the |
19 |
| -[goog.ui Demos](https://google.github.io/closure-library/source/closure/goog/demos/) |
20 |
| - |
21 |
| -## Using with Node.js |
22 |
| -Install the [official package](https://www.npmjs.com/package/google-closure-library) from npm. |
23 |
| - |
24 |
| -```bash |
25 |
| -npm install google-closure-library |
26 |
| -``` |
27 |
| - |
28 |
| -Require the package and use goog.require normally. |
29 |
| - |
30 |
| -```js |
31 |
| -require("google-closure-library"); |
32 |
| - |
33 |
| -goog.require("goog.crypt.Sha1"); |
34 |
| - |
35 |
| -var sha1 = new goog.crypt.Sha1(); |
36 |
| -sha1.update("foobar"); |
37 |
| -var hash = sha1.digest(); |
38 |
| -``` |
39 |
| - |
40 |
| -## Contributing |
41 |
| -Please read the [CONTRIBUTING] for details on how to contribute to this project. |
42 |
| - |
43 |
| -[CONTRIBUTING]: https://github.com/google/closure-library/blob/master/CONTRIBUTING |
| 11 | +[Previous version of this README can be found here.](https://github.com/google/closure-library/blob/a99c1558bb4cdd342fb36bbf3b9296d61b852c33/README.md) |
44 | 12 |
|
45 | 13 |
|
0 commit comments