{"id":32774412,"url":"https://github.com/rari-build/rari","last_synced_at":"2026-06-12T00:01:32.379Z","repository":{"id":306818297,"uuid":"1026485476","full_name":"rari-build/rari","owner":"rari-build","description":"rari: High-performance React Server Components framework powered by a Rust runtime, delivering 18.1x faster response times (0.12ms vs 2.17ms) and 67.4x higher throughput (97,826 vs 1,452 req/sec) than Next.js with zero-config setup.","archived":false,"fork":false,"pushed_at":"2026-06-11T14:58:26.000Z","size":14842,"stargazers_count":1127,"open_issues_count":3,"forks_count":27,"subscribers_count":6,"default_branch":"main","last_synced_at":"2026-06-11T15:16:33.057Z","etag":null,"topics":["rari","react","react-server-components","rust","server-rendering","ssr","web-framework"],"latest_commit_sha":null,"homepage":"https://rari.build","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/rari-build.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":".github/SECURITY.md","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},"funding":{"github":"skiniks"}},"created_at":"2025-07-26T01:44:57.000Z","updated_at":"2026-06-11T15:14:59.000Z","dependencies_parsed_at":"2026-01-29T06:03:20.575Z","dependency_job_id":null,"html_url":"https://github.com/rari-build/rari","commit_stats":null,"previous_names":["rari-build/rari"],"tags_count":351,"template":false,"template_full_name":null,"purl":"pkg:github/rari-build/rari","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rari-build%2Frari","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rari-build%2Frari/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rari-build%2Frari/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rari-build%2Frari/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rari-build","download_url":"https://codeload.github.com/rari-build/rari/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rari-build%2Frari/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34222709,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-11T02:00:06.485Z","response_time":57,"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":["rari","react","react-server-components","rust","server-rendering","ssr","web-framework"],"created_at":"2025-11-04T10:01:37.886Z","updated_at":"2026-06-12T00:01:32.374Z","avatar_url":"https://github.com/rari-build.png","language":"Rust","funding_links":["https://github.com/sponsors/skiniks"],"categories":["Rust","Projects"],"sub_categories":[],"readme":"\u003ca href=\"https://rari.build\" target=\"_blank\"\u003e\n  \u003cpicture\u003e\n    \u003csource media=\"(prefers-color-scheme: dark)\" srcset=\".github/assets/rari-dark.svg\"\u003e\n    \u003csource media=\"(prefers-color-scheme: light)\" srcset=\".github/assets/rari-light.svg\"\u003e\n    \u003cimg alt=\"rari\" src=\".github/assets/rari-light.svg\" width=\"200\"\u003e\n  \u003c/picture\u003e\n\u003c/a\u003e\n\n\u003e Runtime Accelerated Rendering Infrastructure\n\n[![npm version](https://img.shields.io/npm/v/rari.svg)](https://www.npmjs.com/package/rari)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n[![Discord](https://img.shields.io/badge/chat-discord-blue?style=flat\u0026logo=discord)](https://discord.gg/GSh2Ak3b8Q)\n\n**rari** is a React Server Components framework running on a Rust runtime. It has three layers: a Rust runtime (HTTP server, RSC renderer, and router with embedded V8), a React framework (app router, server actions, streaming/Suspense), and a build toolchain (Rolldown-powered Vite bundling, tsgo type checking). You write standard React, the runtime underneath is Rust instead of Node.\n\n## Features\n\n- **App Router** - File-based routing with layouts, loading states, and error boundaries\n- **Server-Side Rendering** - Pre-rendered HTML with instant hydration\n- **React Server Components** - Server components by default, client components when you need them\n- **Rust-powered runtime** - HTTP server, RSC renderer, and routing written in Rust with embedded V8\n- **Zero-config setup** - Works out of the box with pre-built binaries\n- **Hot module reloading** - Instant feedback during development\n- **node_modules support** - Standard npm package resolution without `npm:` specifier\n- **TypeScript-first** - Full type safety across server/client boundary\n- **Cross-platform** - Supports macOS, Linux, and Windows\n- **Streaming SSR** - Progressive rendering with Suspense boundaries\n- **Loading States** - Automatic loading skeletons during navigation\n\n## Quick Start\n\nCreate a new rari application in seconds:\n\n```bash\nnpm create rari-app@latest my-app\ncd my-app\nnpm run dev\n```\n\nThat's it! Your app will be running at `http://localhost:5173`.\n\nVisit [rari.build/docs](https://rari.build/docs) for complete documentation, guides, and examples.\n\n## Documentation\n\n**[Read the full documentation](https://rari.build/docs)** to learn more about:\n\n- Getting started with rari\n- App Router and file-based routing\n- Server Components and Client Components\n- Server Actions and data mutations\n- Streaming SSR and Suspense\n- Deployment and production optimization\n\n## Performance\n\nrari delivers exceptional performance that significantly outperforms traditional React frameworks:\n\n### Head-to-Head Comparison vs Next.js\n\n\u003e Benchmarks last updated: May 25, 2026 (rari v0.13.11)\n\n**Response Time (Single Request):**\n| Metric | rari | Next.js | Improvement |\n|--------|------|---------|-------------|\n| **Average** | **0.12ms** | 2.17ms | **18.1x faster** |\n| **P95** | 0.16ms | 2.37ms | **14.8x faster** |\n| **Bundle Size** | 285 KB | 634 KB | **55% smaller** |\n\n**Throughput Under Load (50 concurrent connections, 30s):**\n| Metric | rari | Next.js | Improvement |\n|--------|------|---------|-------------|\n| **Requests/sec** | **97,826** | 1,452 | **67.4x higher** |\n| **Avg Latency** | **0.51ms** | 34.46ms | **67.6x faster** |\n| **P95 Latency** | **0.82ms** | 43.41ms | **52.9x faster** |\n| **Errors** | 0 | 0 | Stable |\n\n**Build Performance:**\n| Metric | rari | Next.js | Improvement |\n|--------|------|---------|-------------|\n| **Build Time** | **1.75s** | 4.42s | **2.5x faster** |\n| **Bundle Size** | 285 KB | 634 KB | **55% smaller** |\n\nAll benchmarks are reproducible. See [benchmarks/](https://github.com/rari-build/benchmarks) for methodology and tools.\n\n## Contributing\n\nWe welcome contributions! Here's how you can help:\n\n- **Report Bugs** - Found an issue? [Open a bug report](https://github.com/rari-build/rari/issues/new)\n- **Suggest Features** - Have ideas? [Share your suggestions](https://github.com/rari-build/rari/discussions)\n- **Improve Docs** - Help make our documentation better\n- **Submit PRs** - Check out our [Contributing Guide](.github/CONTRIBUTING.md)\n\n## Community\n\n- **Discord** - [Join our community](https://discord.gg/GSh2Ak3b8Q)\n- **GitHub** - [Star the repo](https://github.com/rari-build/rari)\n- **Documentation** - [rari.build/docs](https://rari.build/docs)\n\n## Sponsors\n\nrari is made possible by the support of these companies:\n\n\u003cdiv\u003e\n  \u003ca href=\"https://get.neon.com/KDQudHN\" target=\"_blank\"\u003e\n    \u003cimg width=\"250px\" alt=\"Neon - Serverless Postgres\" src=\".github/assets/neon.svg\"\u003e\n  \u003c/a\u003e\n\u003c/div\u003e\n\n**[Neon](https://get.neon.com/KDQudHN)** - Serverless Postgres. Autoscaling, branching, and scale to zero.\n\n---\n\nInterested in sponsoring rari? [Get in touch](https://github.com/rari-build/rari/discussions) or support us on [GitHub Sponsors](https://github.com/sponsors/skiniks).\n\n## License\n\nMIT License - see [LICENSE](LICENSE) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frari-build%2Frari","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frari-build%2Frari","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frari-build%2Frari/lists"}