Native Performance
Native Performance
Reason runs in the native environment, ocaml-opt provides blazing fast startup and execution.
Familiar API
Familiar API
The same Node.js API that you know and love, get started painlessly!
Fun Types
Fun Types
Reason provides a nice and fun type system, making writing and refactoring your code easy and fun!
Quick Start
open LwtNode;
Node.run({
let%lwt myDir = Fs.mkdir("myDir");
let%lwt myDir2 = Fs.mkdir("myDir2");
Node.resolved();
});