XUtils

Handy-Httpd

A simple, lightweight, and well-documented HTTP server that lets you bootstrap ideas and have something up and running in minutes.


handy-httpd

GitHub Actions Workflow Status GitHub issues DUB Downloads GitHub Tag

An extremely lightweight HTTP server for the D programming language.

Features

Simple Example

import handy_httpd;

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

Articles

  • coming soon...