encore-pubsub

Installation
SKILL.md

Encore Pub/Sub

Instructions

Pub/Sub is for asynchronous messaging between services. Producers publish events to a Topic; consumers attach Subscriptions to react. Resources must be declared at package level — never inside functions.

Topics

import { Topic } from "encore.dev/pubsub";

interface OrderCreatedEvent {
  orderId: string;
  userId: string;
  total: number;
}
Installs
66
GitHub Stars
24
First Seen
May 15, 2026
encore-pubsub — encoredev/skills