Migrate from BuckleScript/Reason
ReScript is a rebranding and cleanup of BuckleScript (since v8.2.0
) & Reason (v3.6
) that enables us to ship a tighter compile-to-JS stack with more coherent documentation & tools. If you're an existing user of BuckleScript & Reason, here's the gist:
ReScript is mostly just BuckleScript rebranded, with a new syntax that's like the Reason syntax, but catered more toward the JavaScript crowd.
All your existing code will keep working even if you don't upgrade.
Upgrade Your Codebase
There are lots of exciting improvements in the new syntax (features, speed, error messages, etc.). The upgrade is trivial, backward-compatible and can be done on a per-file basis:
Upgrade your project to
bs-platform 8.2.0
or later.node_modules/.bin/bsc -format MyFile.re > MyFile.res
.If your new
MyFile.res
looks good, you can delete (or move)MyFile.re
(otherwise you will have an errorInvalid bsconfig.json implementation and interface have different path names or different cases MyFile vs MyFile
).
That's it! MyFile.re
could be any .re
, .rei
, .ml
and .mli
file.
Enjoy the improved experience!
Upgrade an Entire Folder
Please use this with caution. Migrating an entire codebase at once is an uncessary risk. It is recommended to migrate small portion of code to ensure correctness. That being said, for small codebases or some tiny folders that are safely versionned, you can try the following:
CONSOLEfor f in your-folder/**/*.re; do; node_modules/.bin/bsc -format $f > ${f%.re}.res && rm $f; done;
This command loop on the .re
files from the your-folder
folder, convert them with a proper .res
extension, and ask you if you want to remove the previous file (check the newly created .res
file first). If you are confident enough, you can add -f
option to the rm
command.
Difference With Old Reason
Complete removal of semicolon (you can still write them).
No need for parentheses around
if
,switch
andtry
.Type arguments: from
option(int)
tooption<int>
.Old interpolated string: from
{j|hello ${name}|j}
toj`hello ${name}`
. Now with proper unicode support!New interpolated string:
`hello world`
. Also supports multiline and unicode."hello world"
string is now singleline.Polymorphic variants: from
`red
to#red
.Arrays: from
[|1,2,3|]
to[1,2,3]
. In JS, arrays are the right default.Lists: from
[1,2,3]
tolist[1,2,3]
(8.1.1 update: now it islist{1, 2, 3}
). This ties with upcoming plans to access containers in a uniform way:set[...]
andmap[...]
. Maybe temporary.Exception: from
try (compute()) { | Not_found => Js.log("oops")}
totry compute() catch { | Not_found => Js.log("oops")}
.First class module: from
(module S: Student)
tomodule(S: Student)
.No custom infix operator for now (including
mod
).Object access: from
settings##visible #= true
tosettings["visible"] = true
. Rejoice!Object: from
Js.t({"age": int})
to just{"age": int}
. TheJs.t
part is now implicit.Attribute: from
[@bs.deriving accessors]
to@bs.deriving(accessors)
. From[%re bla]
to%re(bla)
.Removed dereference syntax
result^
. Just useresult.contents
.fun
pattern matching syntax removed.Type declaration is non-recursive by default, consistent with let bindings. To have recursive types, use
type rec myList<'a> = Nil | Cons('a, myList<'a>)
.Use any words, including reserved keywords, as your identifier name:
let \"try" = true
.