{"id":31900791,"url":"https://github.com/nexrx/solid-rpc-rs","last_synced_at":"2025-10-13T12:27:48.015Z","repository":{"id":300456309,"uuid":"998997337","full_name":"NexRX/solid-rpc-rs","owner":"NexRX","description":"Build blazing-fast, type-safe full-stack apps with SolidJS \u0026 Rust!","archived":false,"fork":false,"pushed_at":"2025-09-10T03:20:01.000Z","size":100,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-11T06:14:53.272Z","etag":null,"topics":["fullstack","rpc","rust","solidjs"],"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/NexRX.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-06-09T15:22:19.000Z","updated_at":"2025-06-21T19:56:18.000Z","dependencies_parsed_at":"2025-06-21T20:37:37.874Z","dependency_job_id":null,"html_url":"https://github.com/NexRX/solid-rpc-rs","commit_stats":null,"previous_names":["nexrx/solid-rpc-rs"],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/NexRX/solid-rpc-rs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NexRX%2Fsolid-rpc-rs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NexRX%2Fsolid-rpc-rs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NexRX%2Fsolid-rpc-rs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NexRX%2Fsolid-rpc-rs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/NexRX","download_url":"https://codeload.github.com/NexRX/solid-rpc-rs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NexRX%2Fsolid-rpc-rs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279015061,"owners_count":26085643,"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-13T02:00:06.723Z","response_time":61,"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":["fullstack","rpc","rust","solidjs"],"created_at":"2025-10-13T12:27:43.346Z","updated_at":"2025-10-13T12:27:48.009Z","avatar_url":"https://github.com/NexRX.png","language":"Rust","readme":"# solid-rpc-rs\n\n\u003e **Build blazing-fast, type-safe full-stack apps with SolidJS \u0026 Rust!**\n\n🚀 **solid-rpc-rs** is a template repository designed to seamlessly combine [SolidJS](https://www.solidjs.com/) and [Rust](https://www.rust-lang.org/) using RPC (Remote Procedure Call) for full-stack web development. This project provides a modern, efficient, and type-safe foundation for building reactive web apps with a Rust-powered backend and a SolidJS frontend. There is **one** source of truth for whats callable on your server and thats your `code`, no `.proto` files needed!\n\n---\n\n## ✨ Features\n\n- **SolidJS Frontend**: Lightning-fast, reactive UI with fine-grained reactivity.\n- **Rust Backend**: Safe, performant, and reliable server-side logic.\n- **RPC Integration**: Effortlessly call Rust backend functions from SolidJS with type safety.\n- **Type Sharing**: Share types between frontend and backend for minimal runtime errors.\n- **All-in-one Build**: Build the rust project and embed your solidjs app and serve it with one file!\n- **Easily Configurable**: Gives your configuration some type safety and hassle-free loading\n- **Style your way**: Comes with CSS modules and Tailwind (removable with 3 lines from `package.json` \u0026 `index.css`)\n\n---\n\n## 🚀 Getting Started\n\n1. **Clone:**\n\n   ```bash\n   git clone https://github.com/NexRX/solid-rpc-rs.git\n   cd solid-rpc-rs\n   ```\n\n2. **Install dependencies:**\n\n   - For the frontend:\n\n     ```bash\n     pnpm install # or npm, yarn, bun, etc\n     ```\n\n   - For the backend:\n\n     ```bash\n     cargo build\n     ```\n\n3. **Run the development servers:**\n   - Start the backend:\n\n     ```bash\n     cargo run\n     ```\n\n   - Start the frontend:\n\n     ```bash\n     pnpm run dev # or npm, yarn, bun, etc\n     ```\n\n## Build for production\n\nOnce you've got started, you can depend on `cargo build` to build the front end for you, it will detect your js package manager with prioity order of:\n\n1. pnpm\n2. bun\n3. deno\n4. yarn\n5. npm\n\nYou can change this order in `build.rs \u003e js_package_manager()` as you like.\nIn regular (debug) builds, it will re-use existing frontend builds, but when you build for release it will always rebuild your frontend to have the latest version.\n\n1. **Compile**:\n\n    ```rust\n    cargo build --release\n    ```\n\n    Now copy solid `target/release/solid-rpc-rs` (.exe on windows) to your server\n\n2. **Run**:\n\n    ```bash\n    chmod +x ./solid-rpc-rs # linux only\n    ./solid-rpc-rs # .exe on windows\n    ```\n\n---\n\n## 🛠️ Usage\n\n- Define your Rust RPC endpoints in the backend.\n- Call them from SolidJS using qubit client.\n- Share types between frontend and backend for end-to-end type safety.\n\n---\n\n## 📦 Folder Structure\n\n```toml\nsolid-rpc-rs/\n├── src-backend/ # Rust backend with RPC endpoints\n├── src/         # SolidJS frontend\n├── bindings/    # Backend types for frontends\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnexrx%2Fsolid-rpc-rs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnexrx%2Fsolid-rpc-rs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnexrx%2Fsolid-rpc-rs/lists"}