Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Actix Web | 16,924 | 15 days ago | 146 | apache-2.0 | Rust | |||||
Actix Web is a powerful, pragmatic, and extremely fast web framework for Rust. | ||||||||||
Ulfius | 915 | 2 months ago | 6 | lgpl-2.1 | C | |||||
Web Framework to build REST APIs, Webservices or any HTTP endpoint in C language. Can stream large amount of data, integrate JSON data with Jansson, and create websocket services | ||||||||||
Webalchemy | 350 | 3 years ago | 31 | March 24, 2014 | 46 | mit | Python | |||
Modern web development with Python | ||||||||||
Qewd | 113 | 4 | 10 months ago | 246 | December 10, 2020 | 14 | JavaScript | |||
Quick and Easy Web Development | ||||||||||
Uno Online | 17 | 5 days ago | 15 | mit | TypeScript | |||||
The first card game developed with nestjs | ||||||||||
Hr4r2 | 5 | 5 years ago | 1 | JavaScript | ||||||
The new Hot-Reloading example project for (React + RequireJS + TypeScript) => all React components can be hot-reloaded. | ||||||||||
Real Time Chatting App | 4 | 8 months ago | JavaScript | |||||||
This is a Realtime Chat Application uses socket.io library to make a server and client connection where you can chat with your friends globally. | ||||||||||
Videochatwebapp | 2 | 7 months ago | JavaScript | |||||||
VideoChat Web Application build in Django-Python, Channels Modules, WebSocket API, HTML, CSS, JavaScript | ||||||||||
Realtime Chat | 2 | 6 days ago | JavaScript | |||||||
A Real time Messaging App which allows users to create accounts and chat with each other in real-time. The website is developed using MERN stack, which includes MongoDB, Express, React, and Node.js. Socket.IO is used for real-time communication between the users. Redux Toolkit is used for state management, and Tailwind CSS is used for UI |
awc
HTTP client
Dependencies:
[dependencies]
actix-web = "4"
Code:
use actix_web::{get, web, App, HttpServer, Responder};
#[get("/hello/{name}")]
async fn greet(name: web::Path<String>) -> impl Responder {
format!("Hello {name}!")
}
#[actix_web::main] // or #[tokio::main]
async fn main() -> std::io::Result<()> {
HttpServer::new(|| {
App::new().service(greet)
})
.bind(("127.0.0.1", 8080))?
.run()
.await
}
You may consider checking out this directory for more examples.
One of the fastest web frameworks available according to the TechEmpower Framework Benchmark.
This project is licensed under either of the following licenses, at your option:
Contribution to the actix-web repo is organized under the terms of the Contributor Covenant. The Actix team promises to intervene to uphold that code of conduct.