Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yoshuawuyts/document-ready
Document ready listener for browsers
https://github.com/yoshuawuyts/document-ready
Last synced: about 1 month ago
JSON representation
Document ready listener for browsers
- Host: GitHub
- URL: https://github.com/yoshuawuyts/document-ready
- Owner: yoshuawuyts
- License: apache-2.0
- Created: 2019-02-10T14:00:47.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-02-03T15:16:07.000Z (over 4 years ago)
- Last Synced: 2024-09-18T09:10:35.040Z (about 2 months ago)
- Language: Rust
- Homepage:
- Size: 25.4 KB
- Stars: 14
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE-APACHE
- Code of conduct: .github/CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-starred-test - yoshuawuyts/document-ready - Document ready listener for browsers (Rust)
README
# document-ready
[![crates.io version][1]][2] [![build status][3]][4]
[![downloads][5]][6] [![docs.rs docs][7]][8]Document ready listener for browsers.
- [Documentation][8]
- [Crates.io][2]
- [Releases][releases]## Usage
```rust
use document_ready::document_ready;
use wasm_bindgen::prelude::*;#[wasm_bindgen(start)]
pub fn main() {
println!("waiting on document to load");
await!{document_ready()};
println!("document loaded!");
}
```## Installation
```sh
$ cargo add document-ready
```## Contributing
Want to join us? Check out our [The "Contributing" section of the
guide][contributing] and take a look at some of these issues:- [Issues labeled "good first issue"][good-first-issue]
- [Issues labeled "help wanted"][help-wanted]## License
[MIT](./LICENSE-MIT) OR [Apache-2.0](./LICENSE-APACHE)[1]: https://img.shields.io/crates/v/document-ready.svg?style=flat-square
[2]: https://crates.io/crates/document-ready
[3]: https://img.shields.io/travis/yoshuawuyts/document-ready.svg?style=flat-square
[4]: https://travis-ci.org/yoshuawuyts/document-ready
[5]: https://img.shields.io/crates/d/document-ready.svg?style=flat-square
[6]: https://crates.io/crates/document-ready
[7]: https://img.shields.io/badge/docs-latest-blue.svg?style=flat-square
[8]: https://docs.rs/document-ready[releases]: https://github.com/yoshuawuyts/document-ready/releases
[contributing]: https://github.com/yoshuawuyts/document-ready/.github/CONTRIBUTING.md
[good-first-issue]: https://github.com/yoshuawuyts/document-ready/labels/good%20first%20issue
[help-wanted]: https://github.com/yoshuawuyts/document-ready/labels/help%20wanted