axum

Installation
SKILL.md

Axum (Rust) - Production Web APIs

Overview

Axum is a Rust web framework built on Hyper and Tower. Use it for type-safe request handling with composable middleware, structured errors, and excellent testability.

Quick Start

Minimal server

Correct: typed handler + JSON response

use axum::{routing::get, Json, Router};
use serde::Serialize;
use std::net::SocketAddr;
Installs
261
GitHub Stars
53
First Seen
Jan 23, 2026
axum — bobmatnyc/claude-mpm-skills