{"id":21284742,"url":"https://github.com/jakson-almeida/rust-web-assembly","last_synced_at":"2026-05-19T17:15:13.066Z","repository":{"id":238902337,"uuid":"797860862","full_name":"Jakson-Almeida/Rust-Web-Assembly","owner":"Jakson-Almeida","description":"The project is an educational tool demonstrating how Rust can interact with web technologies through WebAssembly. It features a frontend entirely developed using the Sycamore framework, showcasing dynamic interactions and reactivity within a Rust-generated WebAssembly environment.","archived":false,"fork":false,"pushed_at":"2024-05-22T21:27:12.000Z","size":36769,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-05-22T21:59:18.708Z","etag":null,"topics":["rust","sycamore","tauri","webassembly"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/Jakson-Almeida.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}},"created_at":"2024-05-08T16:26:30.000Z","updated_at":"2024-05-22T21:27:15.000Z","dependencies_parsed_at":"2024-05-22T22:07:02.656Z","dependency_job_id":null,"html_url":"https://github.com/Jakson-Almeida/Rust-Web-Assembly","commit_stats":null,"previous_names":["jakson-almeida/rust-web-assembly"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Jakson-Almeida/Rust-Web-Assembly","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jakson-Almeida%2FRust-Web-Assembly","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jakson-Almeida%2FRust-Web-Assembly/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jakson-Almeida%2FRust-Web-Assembly/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jakson-Almeida%2FRust-Web-Assembly/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Jakson-Almeida","download_url":"https://codeload.github.com/Jakson-Almeida/Rust-Web-Assembly/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jakson-Almeida%2FRust-Web-Assembly/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33225520,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-19T15:49:41.270Z","status":"ssl_error","status_checked_at":"2026-05-19T15:49:22.917Z","response_time":58,"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":["rust","sycamore","tauri","webassembly"],"created_at":"2024-11-21T11:17:06.826Z","updated_at":"2026-05-19T17:15:13.030Z","avatar_url":"https://github.com/Jakson-Almeida.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# WebAssembly with Rust Example\n\n## Introduction\nThis project is a simple yet functional example designed to explore **WebAssembly (WASM) integrated with Rust**. WebAssembly is a binary instruction format that provides a way to run code written in multiple languages on the web at near-native speed. Rust, known for its performance and safety, complements WebAssembly by allowing developers to write fast and secure web applications.\n\n## Project Overview\nThe project is an educational tool demonstrating how Rust can interact with web technologies through WebAssembly. It features a frontend entirely developed using the **Sycamore framework**, showcasing dynamic interactions and reactivity within a Rust-generated WebAssembly environment.\n\n![WebAssembly project](https://github.com/Jakson-Almeida/Rust-Web-Assembly/blob/main/GUI/images/READ-ME-img1.png)\n\nAdditionally, this project utilizes **Tauri** to create a desktop application. Tauri enables the development of a local application for your computer, leveraging Rust for the backend, which enhances performance and security.\n\n## Prerequisites\n- Rust and Cargo installed on your system\n- [Trunk](https://trunkrs.dev/), a WASM web application bundler for Rust\n- [Tauri](https://tauri.studio/), a framework for building tiny, fast binaries for all major desktop platforms\n\n## Installation\n1. Clone the repository to your local machine.\n2. Ensure that **Rust, Cargo, Trunk, and Tauri** are installed. Trunk can be installed using the following command:\n\n`cargo install trunk`\n\n3. Optionally, to access the application remotely or from other devices within the network, install [ngrok](https://ngrok.com/) on your system.\n\n## Running the Application\nNavigate to the project's root directory and execute:\n\n`trunk serve`\n\n![WebAssembly project](https://github.com/Jakson-Almeida/Rust-Web-Assembly/blob/main/GUI/images/READ-ME-img-terminal-trunk-serve.png)\n\nThis will compile the project and serve it on `http://[::1]:8080/`. For remote access, start ngrok with:\n\n`ngrok http 8080`\n\n![WebAssembly project](https://github.com/Jakson-Almeida/Rust-Web-Assembly/blob/main/GUI/images/READ-ME-img-terminal-ngrok-http-8080.png)\n\nThis provides a URL to access your server from anywhere.\n\nTo build and run the desktop application, use Tauri commands:\n\n`cargo tauri build`\n\nThis will compile the Tauri application and generate a local executable.\n\n![WebAssembly project](https://github.com/Jakson-Almeida/Rust-Web-Assembly/blob/main/GUI/images/READ-ME-img2.png)\n\n## Conclusion\nThis setup offers a practical introduction to developing web applications with Rust, WebAssembly, and the Sycamore framework, illustrating the powerful integration capabilities of these technologies. By incorporating Tauri, the project demonstrates how to extend web applications to native desktop applications, further expanding the versatility and reach of Rust-based development.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjakson-almeida%2Frust-web-assembly","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjakson-almeida%2Frust-web-assembly","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjakson-almeida%2Frust-web-assembly/lists"}