!DEPRECATED! Use hello-reason instead
Original README below:
Reason project for native compilation:
Build:
Clone the repo and run these commands from within the project:
opam update # get the latest opam packages data. Skip this optionally # opam will read into the `opam` file and add the other dependencies opam install reason opam install merlin opam install re make build # build/rebuild your filesRun:
./_build/install/default/bin/reason-native-binDevelop:
- Make sure you have
merlinglobally installed (via opam, notreason-cli!) - See the ReasonML docs about setting up your editor. Just remember to not install
reason-cliwhen usingopam.
You may alternatively use esy to build and develop this project. (esy is like "npm for native"). This is preferable for people who want to build native Reason projects using existing opam packages, but with a more familiar and sandboxed workflow. This is experimental and not stable yet. Please report any issues to the esy repo.
Build:
npm install -g esy@latest esy install esy buildRun:
Use esy x ("esy execute") command to run the binary.
esy x reason-native-binDevelop:
- See the ReasonML docs about setting up your editor.
- Start your editor from the root of this project via
esy vimoresy atometc. (Note VSCode has specialesysupport so that you don't need to start it this way from the command line). - Add dependencies by adding entries to the
package.json, runningesy installthenesy build.
The entrypoint of this project is the ./bin/test.re file. Make a simple change to it and then rerun the build.
ReasonNativeProject is meant to be the starting point of your own project. You'll want to make use of existing libraries in your app, so browse the growing set of opam packages in the opam repository.
In general, if something goes wrong, try upgrading your install of the project by running opam upgrade ReasonNativeProject, or if it failed to install and you later fixed it, opam install ReasonNativeProject.