Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/bithavoc/webcaret
- Owner: bithavoc
- License: mit
- Created: 2014-02-07T21:50:15.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-04-14T00:58:45.000Z (over 10 years ago)
- Last Synced: 2023-10-26T09:50:13.211Z (about 1 year ago)
- Language: D
- Homepage:
- Size: 1.51 MB
- Stars: 6
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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);
};
}
```