RPC Auto-Linking

RPC Auto-Linking

Call server functions from client with zero configuration.

How It Works

wexts automatically generates a type-safe SDK from your backend services.

typescript
// Backend service
@Injectable()
export class PostsService {
  async getPosts() {
    return this.db.post.findMany();
  }
}

// Frontend - automatically available!
const posts = await wexts.posts.getPosts();