Ripress
An express-inspired Rust-based web framework
"This is an experimental project, and its development may change over time."
Table of Contents
Overview
Ripress is a web framework inspired by Express.js.
Goals
- Provide an intuitive and simple API like Express.js
- Focus on developer experience first; performance optimizations will come later
- Prioritize ease of use over low-level control initially
Installation
You can add ripress to your project using Cargo:
Or manually add it to your Cargo.toml:
[]
= "0.3.0"
Basic Example
use App;
use ;
async
async
View more examples in the examples directory.
Roadmap
- Middleware support (Planned for next week)
- Playwright-based testing (Coming in the next release)