examples/cloudflare-workers-inline-client/README.md
Simple example demonstrating accessing Rivet Actors via Cloudflare Workers without exposing a public API. This uses the createInlineClient function to connect directly to your Durable Object.
git clone https://github.com/rivet-dev/rivet.git
cd rivet/examples/cloudflare-workers-inline-client
npm install
npm run dev
This example demonstrates using inline clients to call actors privately within Cloudflare Workers:
src/backend/registry.ts): Shows how to use createInlineClient for direct actor access without public HTTP endpointsRead more about Cloudflare Workers integration and actions.
MIT