Overview

Web frameworks, REST APIs, GraphQL, WebAssembly, and browser automation

Fast APIs

High-throughput web services

🔌

Full-Stack

Frontend and backend tools

🤖

Automation

Browser testing and scraping

Packages

assets

Advanced assets implementation with high performance and reliability.

avx-browser

Advanced avx-browser implementation with high performance and reliability.

css

Advanced css implementation with high performance and reliability.

js

Advanced js implementation with high performance and reliability.

Quick Start Example

Get started with Web Development:

use avx_web::{Router, Json};

// REST API
let app = Router::new()
    .get("/users", list_users)
    .post("/users", create_user)
    .put("/users/:id", update_user);

app.listen("0.0.0.0:8080").await?;