Project Awesome project awesome

Handy-Httpd

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

Package 37 stars Archived GitHub

handy-httpd

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

Links

Simple Example

import handy_httpd;

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