{"id":15331899,"url":"https://github.com/giusdp/wasmcloud-otp","last_synced_at":"2025-10-10T02:31:46.191Z","repository":{"id":64266667,"uuid":"570245548","full_name":"giusdp/wasmcloud-otp","owner":"giusdp","description":"wasmCloud host runtime that leverages Elixir/OTP and Rust to provide simple, secure, distributed application development using the actor model","archived":false,"fork":true,"pushed_at":"2023-03-15T15:34:27.000Z","size":349131,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-01-27T18:42:26.400Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Elixir","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"wasmCloud/wasmcloud-otp","license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/giusdp.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":".github/CODEOWNERS","security":null,"support":null}},"created_at":"2022-11-24T17:22:02.000Z","updated_at":"2022-11-25T12:34:36.000Z","dependencies_parsed_at":"2023-02-13T23:01:05.217Z","dependency_job_id":null,"html_url":"https://github.com/giusdp/wasmcloud-otp","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/giusdp/wasmcloud-otp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/giusdp%2Fwasmcloud-otp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/giusdp%2Fwasmcloud-otp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/giusdp%2Fwasmcloud-otp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/giusdp%2Fwasmcloud-otp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/giusdp","download_url":"https://codeload.github.com/giusdp/wasmcloud-otp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/giusdp%2Fwasmcloud-otp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279002542,"owners_count":26083400,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-10T02:00:06.843Z","response_time":62,"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":"2024-10-01T09:57:03.868Z","updated_at":"2025-10-10T02:31:41.184Z","avatar_url":"https://github.com/giusdp.png","language":"Elixir","funding_links":[],"categories":[],"sub_categories":[],"readme":"![wasmCloud logo](https://raw.githubusercontent.com/wasmCloud/branding/main/02.Horizontal%20Version/Pixel/PNG/Wasmcloud.Logo-Hrztl_Color.png)\n\n[![wasmcloud_host build status](https://img.shields.io/github/actions/workflow/status/wasmcloud/wasmcloud-otp/wasmcloud_host.yml?branch=main)](https://github.com/wasmCloud/wasmcloud-otp/actions/workflows/wasmcloud_host.yml)\n[![latest release](https://img.shields.io/github/v/release/wasmcloud/wasmcloud-otp?include_prereleases)](https://github.com/wasmCloud/wasmcloud-otp/releases)\n[![homepage](https://img.shields.io/website?label=homepage\u0026url=https%3A%2F%2Fwasmcloud.com)](https://wasmcloud.com)\n[![documentation site](https://img.shields.io/website?label=documentation\u0026url=https%3A%2F%2Fwasmcloud.dev)](https://wasmcloud.dev)\n![Powered by WebAssembly](https://img.shields.io/badge/powered%20by-WebAssembly-orange.svg)\n\n# wasmCloud Host Runtime (OTP)\n\nThe wasmCloud Host Runtime is a server process that securely hosts and provides dispatch for [actors](https://wasmcloud.dev/reference/host-runtime/actors/) and [capability providers](https://wasmcloud.dev/reference/host-runtime/capabilities/). This runtime is designed to take advantage of WebAssembly's small footprint, secure sandbox, speed, and portability to allow developers to write boilerplate-free code that embraces the [actor model](https://en.wikipedia.org/wiki/Actor_model) and abstracts away dependencies on [non-functional requirements](https://www.scaledagileframework.com/nonfunctional-requirements/) via well-defined [interfaces](https://github.com/wasmCloud/interfaces/).\n\nThis host runtime is written in Elixir and extensively leverages the decades of work, testing, and improvements that have gone into the **OTP** framework. There are a number of excellent Elixir and OTP references online, but we highly recommend starting with the [Pragmatic Programmers](https://pragprog.com/categories/elixir-phoenix-and-otp/) Elixir and OTP library of books.\n\nTo get started with installation and exploration, check out the [getting started](https://wasmcloud.dev/overview/getting-started/) section of our documentation.\n\nThe wasmCloud Host Runtime is made up of two pieces:\n\n- The Host Core\n- Dashboard Web UI\n\n## Host Core\n\nThe **host core** consists of all of the \"headless\" (no UI) functional components of the system. This OTP application and its contained supervision tree represent the _core_ of the wasmCloud OTP host runtime.\n\nYou can find the [host core](./host_core/README.md) in this github repository.\n\n## Dashboard Web UI\n\nThe dashboard web UI (often colloquially referred to as the _washboard_) is a **Phoenix** application that fits snugly atop the host core, providing real-time web access to a variety of information, telemetry, and insight while also exposing a graphical interface to controlling the host and portions of the lattice.\n\nYou can find the [dashboard UI](./wasmcloud_host/README.md) in this github repository.\n\n### NATS\n\nAll of wasmCloud's _lattice_ functionality requires the use of [NATS](https://nats.io). To learn more, check out the [lattice](https://wasmcloud.dev/reference/lattice/) section of our documentation.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgiusdp%2Fwasmcloud-otp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgiusdp%2Fwasmcloud-otp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgiusdp%2Fwasmcloud-otp/lists"}