handy-httpd

April 1, 2026 · View on GitHub

GitHub Actions Workflow Status GitHub issues DUB Downloads GitHub Tag

⚠️ This repository is no longer being updated. Please view Handy-Http for the successor of this project.

An extremely lightweight HTTP server for the D programming language.

Features

Simple Example

import handy_httpd;

void main() {
	new HttpServer((ref HttpRequestContext ctx) {
		ctx.response.writeBodyString("Hello world!");
	}).start();
}