{"id":13559649,"url":"https://github.com/juri-web/juri","last_synced_at":"2025-04-03T15:30:48.643Z","repository":{"id":57747686,"uuid":"515388328","full_name":"juri-web/juri","owner":"juri-web","description":"Web Framework","archived":false,"fork":false,"pushed_at":"2023-05-29T14:07:03.000Z","size":1326,"stargazers_count":5,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-10-29T22:25:54.436Z","etag":null,"topics":["juri","rust","web"],"latest_commit_sha":null,"homepage":"https://juri-web.github.io/juri","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/juri-web.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2022-07-19T00:58:51.000Z","updated_at":"2023-12-28T05:57:49.000Z","dependencies_parsed_at":"2024-01-14T04:02:18.751Z","dependency_job_id":null,"html_url":"https://github.com/juri-web/juri","commit_stats":null,"previous_names":["luoxiaozero/juri"],"tags_count":15,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/juri-web%2Fjuri","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/juri-web%2Fjuri/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/juri-web%2Fjuri/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/juri-web%2Fjuri/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/juri-web","download_url":"https://codeload.github.com/juri-web/juri/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246746894,"owners_count":20827062,"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","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":["juri","rust","web"],"created_at":"2024-08-01T13:00:30.480Z","updated_at":"2025-04-03T15:30:44.835Z","avatar_url":"https://github.com/juri-web.png","language":"Rust","funding_links":[],"categories":["Rust"],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n    \u003ca href=\"https://github.com/luoxiaozero/juri\" target=\"_blank\"\u003e\n        \u003cimg src=\"https://repository-images.githubusercontent.com/515388328/57b059d4-f581-471d-bb00-8bdd129912d2\" alt=\"juri logo\" width=\"180\"/\u003e\n    \u003c/a\u003e\n\u003c/p\u003e\n\u003cbr/\u003e\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://crates.io/crates/juri\"\u003e\u003cimg src=\"https://img.shields.io/crates/v/juri\" alt=\"crates package\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\u003cbr/\u003e\n\n# Juri\n\nHTTP Framework\n\n## Getting Started\n\nPlease refer to [Juri Document](https://juri-web.github.io/juri)\n\n## Example\n\n```\ncargo add juri\ncargo add async-std\n```\n\n```rust\nuse juri::{Request, Response, Router, handler};\nuse std::net::SocketAddr;\n\n#[handler]\nfn handle_index(_request: \u0026Request) -\u003e juri::Result\u003cResponse\u003e {\n    Ok(Response::html(\"Hello Juri\"))\n}\n\n#[juri::main]\nasync fn main() {\n    let mut router = Router::new();\n    router.at(\"/\").get(handle_index);\n\n    let addr = SocketAddr::from(([127, 0, 0, 1], 7878));\n    juri::Server::bind(addr).server(router).await.unwrap();\n}\n```\n\n## License\n\n[MIT](./LICENSE) License\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjuri-web%2Fjuri","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjuri-web%2Fjuri","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjuri-web%2Fjuri/lists"}