js_of_ocaml
js_of_ocaml copied to clipboard
Compiler from OCaml to Javascript.
Hi! I've recently done some work on implementing bindings for some browser API not present in js_of_ocaml standard library. 1. [WebRTC API](https://developer.mozilla.org/en-US/docs/Web/API/WebRTC_API) The bindings are not complete and final, but...
It would be nice to provide bindings to window.performance.now ( https://developer.mozilla.org/en-US/docs/Web/API/Performance/now ). The precision has been reduced because of the concerns raised by spectre-class attacks and isn't much better than...
The output of the `--pretty` still looks quite dense, in particular: - There should be spaces around all binary operators and after `,`, `:`, `)`, `;` - The last semicolon...
See this : http://library.elm-lang.org/catalog/johnpmayer-elm-webgl/0.1/Graphics-WebGL
Cf: https://developer.mozilla.org/en-US/docs/Web/API/Window/matchMedia . It seems to be old enough to be supported in all modern browsers: https://caniuse.com/#feat=matchmedia
@talex5 started the implementation on https://github.com/talex5/cuekeeper/blob/master/js/indexedDB.mli It would be nice to complete it and add it to jsoo.
Self reminder for the second part of https://github.com/ocsigen/js_of_ocaml/pull/239#issuecomment-83037593. Here was the description: - A deriver would provide the ability to define "object constructors": ``` ocaml type t = < foo...
Hi, dear ocsigen guys! I'm recently playing with js_of_ocaml and notice an issue that jsoo_link has no --debug-info option and after all the separate js files are linked together, the...