/handy-httpd

Extremely lightweight HTTP server for D.

Primary LanguageDMIT LicenseMIT

handy-httpd

GitHub Actions Workflow Status GitHub issues DUB Downloads GitHub Tag

An extremely lightweight HTTP server for the D programming language.

Features

Links

Simple Example

import handy_httpd;

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