{"id":29745680,"url":"https://github.com/ravencentric/misaki","last_synced_at":"2026-01-20T17:55:27.278Z","repository":{"id":303972513,"uuid":"1016300119","full_name":"Ravencentric/misaki","owner":"Ravencentric","description":"Fast, asynchronous link checker with optional FlareSolverr support.","archived":false,"fork":false,"pushed_at":"2025-07-24T21:54:42.000Z","size":54,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-25T00:03:22.091Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Ravencentric.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE-APACHE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-07-08T19:48:22.000Z","updated_at":"2025-07-24T21:54:46.000Z","dependencies_parsed_at":"2025-07-24T22:09:20.647Z","dependency_job_id":null,"html_url":"https://github.com/Ravencentric/misaki","commit_stats":null,"previous_names":["ravencentric/misaki"],"tags_count":13,"template":false,"template_full_name":null,"purl":"pkg:github/Ravencentric/misaki","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ravencentric%2Fmisaki","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ravencentric%2Fmisaki/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ravencentric%2Fmisaki/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ravencentric%2Fmisaki/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Ravencentric","download_url":"https://codeload.github.com/Ravencentric/misaki/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ravencentric%2Fmisaki/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267128037,"owners_count":24040157,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-26T02:00:08.937Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-07-26T06:17:11.196Z","updated_at":"2026-01-20T17:55:27.232Z","avatar_url":"https://github.com/Ravencentric.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# misaki\n![Crates.io Version](https://img.shields.io/crates/v/misaki-core)\n![docs.rs](https://img.shields.io/docsrs/misaki-core)\n![Crates.io License](https://img.shields.io/crates/l/misaki-core)\n\nmisaki is a fast, asynchronous link checker with optional [FlareSolverr](https://github.com/FlareSolverr/FlareSolverr) support.\n\nThis repository contains two crates:\n\n- [`misaki-core`](https://crates.io/crates/misaki-core): The core library that provides the link-checking functionality.\n- [`misaki-cli`](https://crates.io/crates/misaki-cli): A command-line interface for `misaki-core`.\n\n## misaki-core\n\n`misaki-core` is a library for checking the status of URLs asynchronously.\n\n### Usage\n\nAdd `misaki-core` to your `Cargo.toml`:\n\n```console\n$ cargo add misaki-core\n```\n\nHere is an example of how to use `misaki-core`:\n\n```rust\nuse anyhow::Result;\nuse futures::StreamExt;\nuse misaki_core::LinkChecker;\n\n#[tokio::main]\nasync fn main() -\u003e Result\u003c()\u003e {\n    let urls = vec![\"https://httpbin.org/status/200\"; 10];\n    let checker = LinkChecker::builder().build().await?;\n    {\n        let iter = checker.check_all(urls).await;\n        let mut iter = std::pin::pin!(iter);\n\n        while let Some(status) = iter.next().await {\n            println!(\"{:?}\", status);\n        }\n    }\n    checker.close().await?;\n    Ok(())\n}\n```\n\n## misaki-cli\n\n`misaki-cli` is a command-line tool for checking links.\n\n### Installation\n\nYou can install `misaki-cli` from crates.io using cargo:\n\n```bash\ncargo install misaki-cli\n```\n\nAlternatively, pre-built binaries for various platforms are available on the [GitHub releases page](https://github.com/Ravencentric/misaki/releases/latest).\n\n### Usage\n\nYou can pipe a list of URLs to `misaki` to check them:\n\n```bash\ncat urls.txt | misaki -\n```\n\nOr, you can pass a single URL directly as an argument:\n\n```bash\nmisaki https://google.com\n```\n\n#### With FlareSolverr\n\nTo use FlareSolverr, provide the base URL of your FlareSolverr instance using the `--flaresolverr` flag.\n\n```bash\ncat urls.txt | misaki - --flaresolverr http://localhost:8191\n```\n\n## License\n\nThis project is licensed under either of\n\n- Apache License, Version 2.0, (LICENSE-APACHE or \u003chttp://www.apache.org/licenses/LICENSE-2.0\u003e)\n- MIT license (LICENSE-MIT or \u003chttp://opensource.org/licenses/MIT\u003e)\n\nat your option.\n\n## Contribution\n\nUnless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fravencentric%2Fmisaki","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fravencentric%2Fmisaki","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fravencentric%2Fmisaki/lists"}