You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
See the Tyxml_js module and the Tyxml manual. We also recently introduced a ppx that allows to write HTML/SVG and can be interpreted, among other things, in js_of_ocaml.
The text was updated successfully, but these errors were encountered:
A long time ago I used some part of Ocsigen to write HTML trees but I found it rather annoying to use in practice. I don't remember how it was called, maybe it is now Tyxml. Thanks for the links.
To be honest though, writing HTML trees is probably the least interesting issue that Funweb tries to solve. I think the key feature of Funweb is rather that it adopts ideas from React (see http://jlongster.com/Removing-User-Interface-Complexity,-or-Why-React-is-Awesome). Basically, the idea is to rebuild the DOM tree everytime one wants to modify it. This solves many issues but it also creates new ones. I tried to solve those new issues with very simple solutions and I came up with Funweb.
Others have tackled this problem, Funweb is not ground-breaking, but it was a nice challenge and I had fun designing it :D
See the Tyxml_js module and the Tyxml manual. We also recently introduced a ppx that allows to write HTML/SVG and can be interpreted, among other things, in js_of_ocaml.
The text was updated successfully, but these errors were encountered: