{"id":43218331,"url":"https://github.com/nttcom/moq-wasm","last_synced_at":"2026-02-01T08:30:44.059Z","repository":{"id":256103630,"uuid":"733326018","full_name":"nttcom/moq-wasm","owner":"nttcom","description":null,"archived":false,"fork":false,"pushed_at":"2026-01-29T12:33:59.000Z","size":3786,"stargazers_count":44,"open_issues_count":11,"forks_count":5,"subscribers_count":4,"default_branch":"master","last_synced_at":"2026-01-30T02:41:09.468Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","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/nttcom.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-12-19T04:33:41.000Z","updated_at":"2026-01-20T11:47:04.000Z","dependencies_parsed_at":"2024-10-25T05:50:06.812Z","dependency_job_id":"5c853a97-c5a0-44e4-86ec-d1a3f5392013","html_url":"https://github.com/nttcom/moq-wasm","commit_stats":null,"previous_names":["nttcom/moq-wasm"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/nttcom/moq-wasm","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nttcom%2Fmoq-wasm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nttcom%2Fmoq-wasm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nttcom%2Fmoq-wasm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nttcom%2Fmoq-wasm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nttcom","download_url":"https://codeload.github.com/nttcom/moq-wasm/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nttcom%2Fmoq-wasm/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28974117,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-01T08:16:14.655Z","status":"ssl_error","status_checked_at":"2026-02-01T08:06:51.373Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":[],"created_at":"2026-02-01T08:30:43.926Z","updated_at":"2026-02-01T08:30:44.053Z","avatar_url":"https://github.com/nttcom.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MoQ WASM\n\nBoth server and browser client are written in Rust.\n\n## Demo page\n\nBeing Deployed to Github Pages.\n\n- https://nttcom.github.io/moq-wasm/\n\n## Implementation\n\nSupported version: draft-ietf-moq-transport-10\n\n- [ ] Control Messages\n  - [x] CLIENT_SETUP / SERVER_SETUP\n  - [ ] GOAWAY\n  - [x] ANNOUNCE\n  - [x] SUBSCRIBE\n  - [ ] SUBSCRIBE_UPDATE\n  - [ ] UNSUBSCRIBE\n  - [x] ANNOUNCE_OK\n  - [x] ANNOUNCE_ERROR\n  - [ ] ANNOUNCE_CANCEL\n  - [ ] TRACK_STATUS_REQUEST\n  - [x] SUBSCRIBE_ANNOUNCES\n  - [ ] UNSUBSCRIBE_ANNOUNCES\n  - [x] SUBSCRIBE_OK\n  - [x] SUBSCRIBE_ERROR\n  - [ ] SUBSCRIBE_DONE\n  - [ ] MAX_SUBSCRIBE_ID\n  - [x] ANNOUNCE\n  - [ ] UNANNOUNCE\n  - [ ] TRACK_STATUS\n  - [x] SUBSCRIBE_ANNOUNCES_OK\n  - [x] SUBSCRIBE_ANNOUNCES_ERROR\n  - [ ] FETCH\n  - [ ] FETCH_OK\n  - [ ] FETCH_ERROR\n  - [ ] FETCH_CANCEL\n- [x] Data Streams\n  - [x] Datagram\n  - [x] Subgroup Stream\n- [ ] Features\n  - [x] Manage Publisher / Subscriber\n  - [x] Forword Messages\n  - [ ] Priorities\n  - [x] Object Cache\n\n## Modules\n\n### moqt-core\n\n- Core module for both server and client\n- Includes handlers and data structures\n\n### moqt-server\n\n- Module for server application\n  - Only for WebTransport\n    - Using [`wtransport`](https://github.com/BiagioFesta/wtransport)\n\n### moqt-server-sample\n\n- Sample server application\n  - Supported Roles: PubSub\n\n### moqt-client-wasm\n\n- Module for browser client and sample browser client application\n  - Supported Roles: Publisher, Subscriber, PubSub\n\n## How to run\n\n### Generating public and private keys for the server\n\n```shell\ncd moqt-server-sample\nmkdir keys\ncd keys\nopenssl req -newkey rsa:2048 -nodes -keyout key.pem -x509 -out cert.pem -subj '/CN=Test Certificate' -addext \"subjectAltName = DNS:localhost\"\n\n```\n\n### Run moqt-server-sample\n\n- `make server`\n\nif you want to watch tokio tasks, use tokio-console\n\n```shell\ncargo install tokio-console\ntokio-console\n```\n\n#### Specify the log level\n\n```shell\nmake server-trace\n\nor\n\n# Default setting is `DEBUG`\ncargo run -p moqt-server-sample -- --log \u003cLog Level\u003e\n```\n\n### Run moqt-client-wasm\n\n```shell\ncd js \u0026\u0026 npm install\nmake client\n```\n\n- Add a certificate and Enable WebTransport feature in Chrome\n\n```shell\n# For Mac users\nmake chrome\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnttcom%2Fmoq-wasm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnttcom%2Fmoq-wasm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnttcom%2Fmoq-wasm/lists"}