Ripress
An express-inspired Rust-based web framework
"This is an experimental project, and its development may change over time."
Please star the repo if you like it, so that I know someone is using it.
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.5.0"
= { = "1.44.0", = ["full"] }
Basic Example
use App;
use ;
async
async
View more basic examples in Examples dir.
View full blown code examples here.