{"id":27168515,"url":"https://github.com/uloco/revery-quick-start","last_synced_at":"2026-06-24T03:31:21.438Z","repository":{"id":86419109,"uuid":"216662484","full_name":"uloco/revery-quick-start","owner":"uloco","description":null,"archived":false,"fork":false,"pushed_at":"2019-10-21T20:51:41.000Z","size":633,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-09-05T11:52:20.408Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"OCaml","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/uloco.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-10-21T20:46:31.000Z","updated_at":"2019-10-21T20:51:48.000Z","dependencies_parsed_at":null,"dependency_job_id":"458eb84e-5be0-4584-9636-de3f739d26e6","html_url":"https://github.com/uloco/revery-quick-start","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/uloco/revery-quick-start","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uloco%2Frevery-quick-start","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uloco%2Frevery-quick-start/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uloco%2Frevery-quick-start/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uloco%2Frevery-quick-start/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/uloco","download_url":"https://codeload.github.com/uloco/revery-quick-start/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uloco%2Frevery-quick-start/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34716323,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-24T02:00:07.484Z","response_time":106,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-04-09T05:34:14.383Z","updated_at":"2026-06-24T03:31:21.431Z","avatar_url":"https://github.com/uloco.png","language":"OCaml","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Build Status](https://dev.azure.com/revery-ui/revery/_apis/build/status/revery-ui.revery-quick-start?branchName=master)](https://dev.azure.com/revery-ui/revery/_build/latest?definitionId=4?branchName=master)\n\n# revery-quick-start\n\n---\n\n__Clone and run for a quick way to see Revery in action.__\n\nThis is a minimal Revery application to get you started.\n\nThe most important file here is:\n- `App.re` - This is the core application code, responsible for __creating a window__ and __rendering__.\n\nA Revery application also needs these files:\n- `package.json` - [esy configuration]() - lists the OCaml/Reason dependencies.\n- `dune` / `dune-project` - build configuration files used by [Dune](https://dune.readthedocs.io/en/latest/).\n- `.opam` - metadata used by the build system.\n\nFor JS, we bundle several assets (an `index.html` and JS files in `assets_js`).\n\n### Prerequisites\n\n- Install [Git](https://git-scm.com/)\n- Install [Esy](https://esy.sh/) __0.5.6+__\n\n### Native Build\n\n- `esy install`\n- `esy build`\n\nThe binary will be in the `_build/install/default/bin` - you can run it like:\n\n- `_build/install/default/bin/App`\n\nor with esy:\n\n- `esy run`\n\n```\n# Clone the repository\ngit clone https://github.com/revery-ui/revery-quick-start\n# Go into the repository\ncd revery-quick-start\n# Install dependencies\nesy install\n# Build dependencies\nesy build\n# Run the app\nesy run\n```\n\n\u003e __NOTE:__ The first build will take a while - building the OCaml compiler and dependencies takes time! Subsequent builds, though, should be very fast.\n\n### JavaScript build\n\n- `esy '@js' install`\n- `esy '@js' build`\n\nYou can run and test the JS build with:\n- `esy '@js' run`\n\nThis will start up a local web server.\n\n\n### Releasing\n\nTo create packages for distribution, follow these steps:\n\n- `npm install -g revery-packager`\n\nFrom the `revery-quick-start` folder, run:\n\n- `revery-packager`\n\nOnce complete, there will be application packages available in the `_release` folder.\n\n### Resources\n\n- Check out the [official reason docs](https://reasonml.github.io/docs/en/what-and-why) to learn more about reason\n- Visit the Reason [discord channel](https://discordapp.com/invite/reasonml) and say hi!\n\n### Next steps\n\nHere's a few challenges to see if you've got the basics:\n\n- Change the text from 'Hello World' to something more interesting!\n- Add an Image component (Hint - you'll need to add the resource to the `dune` file, too)\n- Respond to user input\n- Create a frameless window\n\n### License\n\n[MIT License](LICENSE)\n\nRevery-quick-start also includes some assets (font files, etc) that have their own licensing terms. For these, see [ThirdPartyLicenses.txt](ThirdPartyLicenses.txt)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fuloco%2Frevery-quick-start","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fuloco%2Frevery-quick-start","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fuloco%2Frevery-quick-start/lists"}