Thread overview
Advanced (HTML5/JS) client webpage connecting to vibe.d server backend
Oct 08, 2014
Nordlöw
Oct 08, 2014
Rikki Cattermole
Oct 09, 2014
Nordlöw
October 08, 2014
I'm looking for a vibe.d sample application that shows a complete "app" including vibe.d server logic together with some html/js that together provides a modern dynamic web experience. I typically want a web form that updates parts of its page dynamically when, for example, a button is pressed. I would, of course, like to have as much logic as possible in D server part. I've looked at the sample apps at in vibe's examples directory but I couldn't find an example as advanced client-wise as I'd hoped for. Links anyone? I'm asking because I'm totally new to these things (HTML/JS/web-server-protocols) so I would like to have a complete example to extend from that makes use of a modern webpage behaviour.
October 08, 2014
On Wednesday, 8 October 2014 at 21:14:42 UTC, Nordlöw wrote:
> I'm looking for a vibe.d sample application that shows a complete "app" including vibe.d server logic together with some html/js that together provides a modern dynamic web experience. I typically want a web form that updates parts of its page dynamically when, for example, a button is pressed. I would, of course, like to have as much logic as possible in D server part. I've looked at the sample apps at in vibe's examples directory but I couldn't find an example as advanced client-wise as I'd hoped for. Links anyone? I'm asking because I'm totally new to these things (HTML/JS/web-server-protocols) so I would like to have a complete example to extend from that makes use of a modern webpage behaviour.

I have a client side templating solution you might be interested in [0].
But not a fully featured sort of thing.

[0] https://github.com/rikkimax/client-templating
October 09, 2014
On Wednesday, 8 October 2014 at 23:34:47 UTC, Rikki Cattermole
wrote:
> I have a client side templating solution you might be interested in [0].
> But not a fully featured sort of thing.
>
> [0] https://github.com/rikkimax/client-templating

Thanks.