Skip to content

bleepbloopsify/jsoo-react

 
 

Repository files navigation

jsoo-react

Actions Status

Bindings to React for js_of_ocaml, including JSX ppx.

Adapted from ReasonReact.

jsoo-react allows to use React from OCaml, but it is still at the experimental phase: there is no published version in opam yet, and the library is expected to break backwards compatibility often.

Bug reports and contributions are welcome!

Getting started

New project

For new projects, the best way to start is by using Spin with the spin-jsoo-react template.

  1. First, install Spin following the instructions.

  2. Then run:

    spin new https://github.com/tmattio/spin-jsoo-react.git

    After that, check the newly created project readme to get started.

Existing project

  1. Install the jsoo-react package:

    opam pin add -y jsoo-react https://github.com/ml-in-barcelona/jsoo-react.git
  2. Add jsoo-react library and ppx to dune file of your executable JavaScript app:

    (executables
    (names index)
    (modes js)
    (libraries jsoo-react.lib)
    (preprocess
      (pps jsoo-react.ppx)))
    
  3. Provision React.js library

    jsoo-react does not make any assumptions about how you will load React.js in your application. There are 2 ways of doing so:

    With Webpack (or any JavaScript bundler)

    If you want to use Webpack, Rollup, Parcel or any other JavaScript bundler, include a file react-requires.js in your application source folder with the following content:

    joo_global_object.React = require('react');
    joo_global_object.ReactDOM = require('react-dom');

    Then add it to your application dune file so it can be linked:

    (executables
    ...
    (js_of_ocaml
      (javascript_files react-requires.js)))
    

    To see an example of this approach, check the example folder.

    Note that at this moment, jsoo-react is compatible with React 16, so be sure to have the appropriate constraints in your package.json.

    With <script> tags

    If you are not using any JavaScript bundlers, and just loading the bc.js artifact generated by Dune, you can just add the following HTML tags to your index.html page:

    <script src="https://unpkg.com/react@16/umd/react.development.js" crossorigin></script>
    <script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js" crossorigin></script>

    Make sure they are loaded before your application bc.js artifact.

Contributing

Take a look at our Contributing Guide.

Acknowledgements

Thanks to the authors and maintainers of ReasonReact, in particular @rickyvetter for his work on the v3 of the JSX ppx.

Thanks to the authors and maintainers of Js_of_ocaml, in particular @hhugo who has been answering many many questions in GitHub threads.

Thanks to the Lexifi team for creating and maintaining gen_js_api.

Thanks to @tmattio for creating Spin and the jsoo-react template 🙌

And thanks to the team behind React.js! What an amazing library :)

About

js_of_ocaml bindings for ReactJS. Based on ReasonReact.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • OCaml 74.1%
  • Reason 16.1%
  • CSS 7.9%
  • Makefile 0.9%
  • JavaScript 0.5%
  • HTML 0.4%
  • Shell 0.1%