CGI Programming in D

I am interested in learning more about the D programming language and especially using it for CGI programs. I looked at the standard libraries (Phobos) and did not see CGI support. Does anyone know of good examples of CGI programs written in D?

+5
source share
2 answers

Adam Rupp's library is probably the most comprehensive CGI D solution at the moment:

https://github.com/adamdruppe/misc-stuff-including-D-programming-language-web-stuff

+8
source

Here is the cgi library for D that I wrote as a support library for a larger project. MIT is licensed, free to use as you wish.

https://github.com/josephRice/cgi_d

+1
source

All Articles