{"id":31052939,"url":"https://github.com/abhithemodder/r2web","last_synced_at":"2025-09-15T01:37:02.496Z","repository":{"id":311982094,"uuid":"1040439356","full_name":"AbhiTheModder/r2web","owner":"AbhiTheModder","description":"Access radare2 from anywhere, anytime.","archived":false,"fork":false,"pushed_at":"2025-09-09T00:16:07.000Z","size":98,"stargazers_count":15,"open_issues_count":0,"forks_count":6,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-09-09T02:34:13.084Z","etag":null,"topics":["binary-analysis","disassembler","r2web","radare2","reverse-engineering","wasi","wasm","wasmer"],"latest_commit_sha":null,"homepage":"https://r2.revengi.in","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AbhiTheModder.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2025-08-19T01:37:28.000Z","updated_at":"2025-09-09T00:16:10.000Z","dependencies_parsed_at":"2025-08-28T05:30:42.683Z","dependency_job_id":"dba39ac2-4e84-408e-afd9-0a3e055fad20","html_url":"https://github.com/AbhiTheModder/r2web","commit_stats":null,"previous_names":["abhithemodder/r2web"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/AbhiTheModder/r2web","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AbhiTheModder%2Fr2web","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AbhiTheModder%2Fr2web/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AbhiTheModder%2Fr2web/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AbhiTheModder%2Fr2web/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AbhiTheModder","download_url":"https://codeload.github.com/AbhiTheModder/r2web/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AbhiTheModder%2Fr2web/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275194016,"owners_count":25421437,"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-09-14T02:00:10.474Z","response_time":75,"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":["binary-analysis","disassembler","r2web","radare2","reverse-engineering","wasi","wasm","wasmer"],"created_at":"2025-09-15T01:36:58.148Z","updated_at":"2025-09-15T01:37:02.481Z","avatar_url":"https://github.com/AbhiTheModder.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cimg border=0 src=\"public/r2cloud.svg\" type=\"image/svg+xml\" alt=\"screenshot\" align=\"left\" width=\"130px\"\u003e\n\n\n## r2web: __Access radare2 from anywhere, anytime.__\n\n\n\nhttps://github.com/user-attachments/assets/1d60bc1a-2e91-4868-ac5f-3a861d0af537\n\n\n\n## Overview\n\nr2web lets you run radare2 without local installs or platform hassles. Analyze files directly in your browser. It runs entirely client-side using radare2 WASI and Wasmer, with an [xterm.js](https://xtermjs.org/) frontend for interactive command execution.\n\n👉 [Try it live](https://r2.revengi.in)\n\n## Features\n\n- **Browser-based**: No local installation required\n- **Cross-platform**: Works on any device with a modern browser (since older browsers don't support WASI/WASM)\n- **Terminal Interface:** Interact with r2 via a familiar terminal.\n- **Keyboard Shortcuts:** Navigate quickly using some known GUI shortcuts (like `Ctrl+G` for seek).\n- **Search:** Ability to search in large outputs of commands.\n- **Custom r2 versions:** Use any version of r2 you want.\n- **Quick Buttons:** Buttons for common commands like `pd`, `px`, `iz`.\n\n## Under the Hood\n\nr2web uses:\n\n*   React+TypeScript+Vite\n*   [xterm.js](https://xtermjs.org/) for the terminal interface\n*   Wasmer for running WASM\n*   r2wasm for the WASM build of radare2\n\n## Development\n\nTo run locally:\n```shell\ngit clone https://github.com/AbhiTheModder/r2web.git\ncd r2web\nbun install\nbun dev\n```\n\nyou'll need to run a very small proxy api server to workaround with browser's CORS policy, to do that run:\n```shell\nbun run api/wasm.js # or node api/wasm.js if you don't have bun installed\n```\nwhich will run a local proxy server at `http://localhost:3000/wasm`, that will be used to fetch the wasm file from the github releases.\n\nOr you can run both dev \u0026 proxy server at the same time using:\n```shell\nbun cc\n```\n\nOr skip the setup and [try it live](https://r2.revengi.in).\n\n\u003e [!TIP]\n\u003e If you don't have bun installed, you can use npm or yarn or any other package manager which you have installed. Just replace `bun` with `npm` or `yarn` (or any other package manager) in the above commands.\n\n## Notes\n\n- This is a work in progress. Expect bugs and missing features.\n- The radare2 binary is downloaded on first load and cached for future use (an option to disable caching is also given).\n- ~~Currently there's no way to save modified files, (seems like an issue on r2wasm side), figuring out a way to fix it.~~ (Fixed on r2 versions 6.0.3 onwards...)\n\n\n## Contributing\nContributions are welcome! Please open an issue or submit a pull request.\n\n## License\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.\n\n- radare license can be found [here](https://github.com/radareorg/radare2/blob/master/COPYING.md).\n\n## Similar Projects\n\n- [r2wasm](https://github.com/radareorg/r2wasm) - Official r2wasm showcase project\n- [radare2 online](https://radare2.online/) - Online version of radare2 [currently broken]\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabhithemodder%2Fr2web","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fabhithemodder%2Fr2web","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabhithemodder%2Fr2web/lists"}