xxxxxxxxxx
/+ dub.sdl:
dependency "vibe-d" version="~>0.8.2"
+/
import vibe.d;
import std.stdio;
void main()
{
listenHTTP(":8080", (req, res) {
res.writeBody("Hello, World: " ~ req.path);
});
runTask({
scope (exit) exitEventLoop();
auto req = requestHTTP("http://localhost:8080");
req.bodyReader.readAllUTF8.writeln;
});
runApplication();
}