From: Alain Frisch <alain@frisch.fr>
To: Helmut Brandl <helmut.brandl@gmx.net>, caml-list@inria.fr
Subject: Re: [Caml-list] js_of_ocaml with node
Date: Tue, 28 Apr 2015 00:03:20 +0200 [thread overview]
Message-ID: <553EB228.9080801@frisch.fr> (raw)
In-Reply-To: <553E9CD0.5040203@gmx.net>
On 27/04/2015 22:32, Helmut Brandl wrote:
> Hello all,
>
> I am currently writing a software package in ocaml and I want to be able
> to compile it from ocaml to javascript to be able to run it under
> nodejs. I have found js_of_ocaml which seems to do a rather good job in
> compiling from bytecode to javascript.
>
> I achieved the compilation to javascript which can run under nodejs as
> long as I don't use anything from the unix library. Unfortunately I need
> two functions from the unix library: 1. Get the last modification time
> of a file. 2. Create a directory. I cannot find anything equivalent in
> the standard library.
You need to define bindings to node.js' "fs" API:
https://nodejs.org/api/fs.html
It should be possible to implement a subset of the Unix module through
this API, or just to expose the few functions you would need.
For instance, with the gen_js_api I announced earlier today, binding the
synchronous mkdir function would look like:
val mkdir: string -> int -> unit
[@@js.global "fs.mkdirAsync"]
Alain
next prev parent reply other threads:[~2015-04-27 22:03 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-04-27 20:32 Helmut Brandl
2015-04-27 21:02 ` Sébastien Dailly
2015-04-27 21:16 ` Helmut Brandl
2015-04-28 7:08 ` Sébastien Dailly
2015-04-27 21:11 ` Daniel Bünzli
2015-04-27 22:03 ` Alain Frisch [this message]
2015-04-27 22:41 ` Daniel Bünzli
2015-04-28 7:53 ` Alain Frisch
2015-04-28 8:11 ` Alain Frisch
2015-04-28 11:17 ` Drup
2015-04-29 22:03 ` Helmut Brandl
2015-04-29 22:49 ` Mauricio Fernández
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=553EB228.9080801@frisch.fr \
--to=alain@frisch.fr \
--cc=caml-list@inria.fr \
--cc=helmut.brandl@gmx.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox