Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bithavoc/webcaret

Webcaret is the first Web Framework for the upcoming Heaploop platform
https://github.com/bithavoc/webcaret

Last synced: about 13 hours ago
JSON representation

Webcaret is the first Web Framework for the upcoming Heaploop platform

Awesome Lists containing this project

README

        

webcaret
========

Web^ is the first Web Framework for the upcoming Heaploop platform

Sneak Peek
-----------

```d
import webcaret.application;
import heaploop.looping;

void main() {
loop ^^ {
auto app = new Application;
app.router.get("/") ^ (req, res) {
res.write("Hello World");
res.end;
};
app.serve("0.0.0.0", 3000);
};
}
```