4

Just created a Cloudflare worker that sends messages to the backend over PubSub. Feeling pretty bad-ass right now.

Comments
  • 0
    Rabbit MQ? Looking to try it out on a side project over the next few days.
  • 1
    @fullstackchris I started with RabbitMQ, but Cloudflare workers doesn't run on Node, it can only run npm packages that can also run in the browser. I ended up switching back to a combination of AWS SNS (Pub) and AWS SQS (Sub) because their SDK runs natively in the browser.
  • 0
    @devphobe Very cool. I'm currently trying to evaluate or figure out the performances between RabbitMQ, WebSockets, gRPC, and JSON RPC... I realize they all have different use cases / some overlap a bit, but its hard to fjnd comparisons between any of them
Add Comment