{"id":30039218,"url":"https://github.com/guru901/ripress","last_synced_at":"2025-08-07T01:36:58.535Z","repository":{"id":281926823,"uuid":"946479951","full_name":"Guru901/Ripress","owner":"Guru901","description":"An express inspired rust based web framework","archived":false,"fork":false,"pushed_at":"2025-08-05T14:19:18.000Z","size":148,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-05T16:19:19.280Z","etag":null,"topics":["exoress","http","http-server","rust","rust-library","rustlang"],"latest_commit_sha":null,"homepage":"https://crates.io/crates/ripress","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/Guru901.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-03-11T07:53:34.000Z","updated_at":"2025-08-05T14:19:22.000Z","dependencies_parsed_at":"2025-03-26T17:26:57.128Z","dependency_job_id":"f9455e97-4f42-4d8c-9ffc-dac0c4f664bc","html_url":"https://github.com/Guru901/Ripress","commit_stats":null,"previous_names":["guru901/ripress"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Guru901/Ripress","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Guru901%2FRipress","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Guru901%2FRipress/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Guru901%2FRipress/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Guru901%2FRipress/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Guru901","download_url":"https://codeload.github.com/Guru901/Ripress/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Guru901%2FRipress/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269185683,"owners_count":24374625,"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-08-06T02:00:09.910Z","response_time":99,"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":["exoress","http","http-server","rust","rust-library","rustlang"],"created_at":"2025-08-07T01:36:54.436Z","updated_at":"2025-08-07T01:36:58.508Z","avatar_url":"https://github.com/Guru901.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Ripress\n\n### An express-inspired Rust-based web framework\n\nPlease star the repo if you like it, so that I know someone is using it.\n\n## Table of Contents\n\n- [Overview](#overview)\n- [Goals](#goals)\n- [Installation](#installation)\n- [Examples](#basic-example)\n- [Documentation](#documentation)\n- [Changelog](#changelog)\n\n---\n\n## Overview\n\nRipress is a web framework inspired by Express.js.\n\n## Goals\n\n- Provide an intuitive and simple API like Express.js\n- Focus on developer experience first; performance optimizations will come later\n- Prioritize ease of use over low-level control initially\n\n---\n\n## Installation\n\nYou can add `ripress` to your project using Cargo:\n\n```sh\ncargo add ripress tokio\n```\n\nOr manually add it to your `Cargo.toml`:\n\n```toml\n[dependencies]\nripress = \"0.6.1\"\ntokio = { version = \"1.46.1\", features = [\"full\"] }\n```\n\n## Basic Example\n\n```rust\nuse ripress::app::App;\nuse ripress::context::{HttpRequest, HttpResponse};\n\n#[tokio::main]\nasync fn main() {\n    let mut app = App::new();\n    app.get(\"/\", hello_world);\n    app.listen(3000, || {}).await;\n}\n\nasync fn hello_world(_req: HttpRequest, res: HttpResponse) -\u003e HttpResponse {\n    res.ok().text(\"Hello, world!\")\n}\n```\n\nView more basic examples in [Examples](./docs/example/) dir.\n\nView full blown code examples [here](https://github.com/Guru901/ripress-examples).\n\n## Documentation\n\n[Getting Started Guide](./docs/getting-started.md)\n\n## Changelog\n\n[View Changelog](./CHANGELOG.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fguru901%2Fripress","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fguru901%2Fripress","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fguru901%2Fripress/lists"}