{"id":41233961,"url":"https://github.com/hyperpolymath/rescript-wasm-runtime","last_synced_at":"2026-01-23T01:00:09.594Z","repository":{"id":325558700,"uuid":"1101584871","full_name":"hyperpolymath/rescript-wasm-runtime","owner":"hyperpolymath","description":"ReScript WASM runtime and bindings","archived":false,"fork":false,"pushed_at":"2026-01-10T13:50:42.000Z","size":237,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-11T04:07:27.282Z","etag":null,"topics":["automation","hyperpolymath-tools","integration","operations","plugins-and-extensions","programming-language","reliability","rhodium-standard","rsr","systems","tooling"],"latest_commit_sha":null,"homepage":null,"language":"ReScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hyperpolymath.png","metadata":{"files":{"readme":"README.adoc","changelog":"CHANGELOG.adoc","contributing":"CONTRIBUTING.adoc","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":"ROADMAP.adoc","authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":"MAINTAINERS.md","copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":"hyperpolymath","ko_fi":"hyperpolymath","liberapay":"hyperpolymath"}},"created_at":"2025-11-21T22:22:49.000Z","updated_at":"2026-01-10T13:50:46.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/hyperpolymath/rescript-wasm-runtime","commit_stats":null,"previous_names":["hyperpolymath/rescript-wasm-runtime"],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/hyperpolymath/rescript-wasm-runtime","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hyperpolymath%2Frescript-wasm-runtime","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hyperpolymath%2Frescript-wasm-runtime/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hyperpolymath%2Frescript-wasm-runtime/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hyperpolymath%2Frescript-wasm-runtime/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hyperpolymath","download_url":"https://codeload.github.com/hyperpolymath/rescript-wasm-runtime/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hyperpolymath%2Frescript-wasm-runtime/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28676436,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-22T20:48:19.482Z","status":"ssl_error","status_checked_at":"2026-01-22T20:48:14.968Z","response_time":144,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["automation","hyperpolymath-tools","integration","operations","plugins-and-extensions","programming-language","reliability","rhodium-standard","rsr","systems","tooling"],"created_at":"2026-01-23T01:00:08.387Z","updated_at":"2026-01-23T01:00:09.555Z","avatar_url":"https://github.com/hyperpolymath.png","language":"ReScript","funding_links":["https://github.com/sponsors/hyperpolymath","https://ko-fi.com/hyperpolymath","https://liberapay.com/hyperpolymath"],"categories":[],"sub_categories":[],"readme":"= rescript-wasm-runtime\nimage:[License,link=\"https://github.com/hyperpolymath/palimpsest-license\"]\n\n// SPDX-License-Identifier: PMPL-1.0\n// SPDX-FileCopyrightText: 2025 Jonathan D.A. Jewell\n\n:toc:\n:toclevels: 3\n:sectanchors:\n:source-highlighter: rouge\n\nReScript WASM runtime and bindings.\n\n== What this is\n\nThis repository aims to provide a *ReScript-first* WebAssembly runtime layer and bindings, with a focus on:\n\n* Running and interacting with WebAssembly modules from ReScript-compiled JavaScript\n* A clean, typed API surface suitable for browser and server-like JS runtimes\n* A structured repository with benchmarks, examples, tests, and automation scripts\n\nThe repository contains implementation and support directories including `src/`, `tests/`, `examples/`, `benchmark/`, `scripts/`, and `docs/`. (If you’re reading this in GitHub’s UI: the code lives in `src/`.) :contentReference[oaicite:2]{index=2}\n\n== What this is not\n\nNon-goals (at least for the early stages):\n\n* Not a full WebAssembly engine competing with Wasmtime/WasmEdge\n* Not a JIT/AOT compiler project\n* Not a WASI “system” or container runtime (unless explicitly added later as a separate layer)\n* Not TypeScript-first: ReScript is the source of truth\n\n== Status\n\n*Current status:* stabilising the project narrative and ensuring the implementation matches the stated goal.\n\nSee `ROADMAP.adoc` for staged deliverables.\n\n== Quick start\n\n=== Prerequisites\n\nYou’ll typically need:\n\n* ReScript toolchain (via `rescript.json`)\n* A JS runtime (browser tooling, or a server runtime depending on your target)\n* Optional: `just` (if you use the included `justfile` tasks) :contentReference[oaicite:3]{index=3}\n\n=== Common tasks\n\n.Build\n----\njust build\n----\n\n.Test\n----\njust test\n----\n\n.Run examples\n----\njust examples\n----\n\n.Benchmark\n----\njust bench\n----\n\nNOTE: If your environment doesn’t use `just`, inspect `justfile` for the underlying commands and run them directly.\n\n== Repository layout\n\n* `src/` — core runtime + binding surface :contentReference[oaicite:4]{index=4}\n* `tests/` — correctness + regression tests :contentReference[oaicite:5]{index=5}\n* `examples/` — minimal demos showing intended usage :contentReference[oaicite:6]{index=6}\n* `benchmark/` — micro/meso benchmarks for hot paths :contentReference[oaicite:7]{index=7}\n* `docs/` — design notes, API notes, decisions :contentReference[oaicite:8]{index=8}\n* `scripts/` — build/release/verification helpers :contentReference[oaicite:9]{index=9}\n\n== API philosophy\n\nDesign principles for the public API:\n\n* *Typed by default:* avoid “stringly-typed” host imports/exports where feasible\n* *Minimal surface:* prefer a small stable core with optional add-ons\n* *No hidden channels:* side effects and host interactions should be explicit in the API\n* *Portability:* target Web APIs where possible (e.g. WebCrypto/WebAssembly APIs)\n\n== Mirrors and canonical source\n\n*Canonical source of truth:* GitHub (`hyperpolymath/rescript-wasm-runtime`).\n\nMirrors may exist on other forges for availability, but GitHub remains canonical unless explicitly stated otherwise.\n\n== Security\n\n* WebAssembly is not automatically “safe.” Threat models differ between browser and server runtimes.\n* Avoid treating “runs WASM” as a security claim; treat it as an execution format with constraints.\n\nIf you discover a vulnerability, see `SECURITY.md`. :contentReference[oaicite:10]{index=10}\n\n== License\n\nSee `LICENSE.txt`. :contentReference[oaicite:11]{index=11}\n\n== Contributing\n\nSee `CONTRIBUTING.md` and `TPCF.md` for how contributions are structured and kept safe. :contentReference[oaicite:12]{index=12}\n\nRecommended contribution entry points:\n\n* Add/clean an example in `examples/`\n* Add a regression test in `tests/`\n* Improve benchmark coverage in `benchmark/`\n* Tighten docs in `docs/` (AsciiDoc preferred)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhyperpolymath%2Frescript-wasm-runtime","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhyperpolymath%2Frescript-wasm-runtime","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhyperpolymath%2Frescript-wasm-runtime/lists"}