From b8c78755f475c0e28c7a21d00fe7801eddae119e Mon Sep 17 00:00:00 2001 From: viveknathani Date: Fri, 28 Aug 2026 11:32:38 +0530 Subject: [PATCH] docs(examples): fix hello world implementation reference --- examples/hello-world/README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/hello-world/README.md b/examples/hello-world/README.md index 5f04226bfb..40027b085b 100644 --- a/examples/hello-world/README.md +++ b/examples/hello-world/README.md @@ -23,8 +23,7 @@ npm run dev This example demonstrates the core RivetKit concepts with a simple counter: -- **Actor Definition** ([`src/actors.ts`](https://github.com/rivet-dev/rivet/tree/main/examples/hello-world/src/actors.ts)): Counter actor with persistent state and broadcast events -- **Server Setup** ([`src/server.ts`](https://github.com/rivet-dev/rivet/tree/main/examples/hello-world/src/server.ts)): Minimal Hono server with RivetKit handler +- **Actor and Server** ([`src/index.ts`](https://github.com/rivet-dev/rivet/tree/main/examples/hello-world/src/index.ts)): Counter actor with persistent state and broadcast events, plus actor registration and RivetKit server startup - **React Frontend** ([`frontend/App.tsx`](https://github.com/rivet-dev/rivet/tree/main/examples/hello-world/frontend/App.tsx)): Counter component using `useActor` hook and event subscriptions ## Resources