Service Workers and Typescript
Hello!
I'm trying to call worker B from worker A.
I've set up everything as described in the docs (https://developers.cloudflare.com/workers/runtime-apis/bindings/service-bindings/) and the calls work, but receive Typescript errors:
I found this on the forum: https://community.cloudflare.com/t/binding-service-rpc-using-typescript/652041
Still can't get something working 😦
Found this as well, still can't figure it out: https://developers.cloudflare.com/workers/runtime-apis/rpc/typescript/
Note worker A and worker B are in separate repos, so maybe it's a moot point in this case? I'm not super familar with RPC stuff.
Cloudflare Docs
Service bindings - Runtime APIs · Cloudflare Workers docs
Facilitate Worker-to-Worker communication.
Cloudflare Docs
Workers RPC — TypeScript · Cloudflare Workers docs
How TypeScript types for your Worker or Durable Object's RPC methods are generated and exposed to clients
7 Replies
Hey @Web Bae! did you find a solution? 🤔
The @cloudflare/workers-types package defines the type Service<MyEntrypointType>, which describes the type of a service binding. MyEntrypointType is the type of your server-side interface. Service<MyEntrypointType> applies all the necessary transformations to turn this into a client-side type, such as converting all methods to async, replacing functions and RpcTargets with (properly-typed) stubs, and so on. It is up to you to share the definition of MyEntrypointType between your server app and its clients. You might do this by defining the interface in a separate shared TypeScript file, or by extracting a .d.ts type declaration file from your server code using tsc --declaration.https://blog.cloudflare.com/javascript-native-rpc#what-about-type-safety seems the approach, combined with the forum post you ref.d @Web Bae as for sharing types between your repos, that's a whole new rabbit hole. monorepos are fun lol
The Cloudflare Blog
We've added JavaScript-native RPC to Cloudflare Workers
Cloudflare Workers now features a built-in RPC (Remote Procedure Call) system for use in Worker-to-Worker and Worker-to-Durable Object communication, with absolutely minimal boilerplate. We've designed an RPC system so expressive that calling a remote service can feel like using a library.
ok so. i got something working. jeez.
// WORKER A
// WORKER B
bun link (was) working pretty well for me for using as a package across repos
wangler types
command overwrites as Fetcher, so that's the next fun choice to makehelpful rabbit hole
https://discord.com/channels/595317990191398933/779390076219686943/1254019149223563355
good impl. reference
https://github.com/cloudflare/js-rpc-and-entrypoints-demo/tree/0b482ea46e2f69f0b8bf933ec4a65e6f0b1a767f
GitHub
GitHub - cloudflare/js-rpc-and-entrypoints-demo at 0b482ea46e2f69f0...
Contribute to cloudflare/js-rpc-and-entrypoints-demo development by creating an account on GitHub.
more!
so got an image generator working with
workers-og
initially by bundling within the default class. that worked fine
broke when moved outside to its own classfix: have to define entrypoint in
wrangler.toml
. again: wrangler types
will reset to Fetcher, so be aware
all working deployed 😠bun link working a dream now. semver.@alors thanks for the links