Skip to content

Files

Latest commit

f7baa56 · Apr 26, 2023

History

History
This branch is 12 commits ahead of, 9978 commits behind vercel/next.js:canary.

with-reasonml

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
May 5, 2019
May 23, 2019
May 5, 2019
Sep 14, 2020
Mar 27, 2023
Apr 26, 2023
May 5, 2019
Aug 27, 2017
Feb 3, 2020
Oct 28, 2022

Example app using ReasonML & ReasonReact components

This example features:

  • An app that mixes together JavaScript and ReasonML components and functions
  • An app with two pages which has a common Counter component
  • That Counter component maintain the counter inside its module. This is used primarily to illustrate that modules get initialized once and their state variables persist in runtime

Deploy your own

Deploy the example using Vercel:

Deploy with Vercel

How to use

Execute create-next-app with npm, Yarn, or pnpm to bootstrap the example:

npx create-next-app --example with-reasonml with-reasonml-app
yarn create next-app --example with-reasonml with-reasonml-app
pnpm create next-app --example with-reasonml with-reasonml-app

Deploy it to the cloud with Vercel (Documentation).

Recommendation:

Run BuckleScript build system bsb -w and next -w separately. For the sake of simple convention, npm run dev run both bsb and next concurrently. However, this doesn't offer the full colorful and very, very, veeeery nice error output experience that ReasonML can offer, don't miss it!

There are 2 convenience scripts to facilitate running these separate processes:

  1. npm run dev:reason - This script will start the ReasonML toolchain in watch mode to re-compile whenever you make changes.
  2. npm run dev:next - This script will start the next.js development server so that you will be able to access your site at the location output by the script. This will also hot reload as you make changes.

You should start the scripts in the presented order.