From 7f631c493d04ba96e36975365532e2172fec367e Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Thu, 7 Oct 2021 21:13:14 +0200 Subject: Added dithered images --- posts/2020-03-22-simple-sse-based-pubsub-server.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'posts/2020-03-22-simple-sse-based-pubsub-server.md') diff --git a/posts/2020-03-22-simple-sse-based-pubsub-server.md b/posts/2020-03-22-simple-sse-based-pubsub-server.md index 4256aed..4db3a57 100644 --- a/posts/2020-03-22-simple-sse-based-pubsub-server.md +++ b/posts/2020-03-22-simple-sse-based-pubsub-server.md @@ -23,7 +23,7 @@ Publisher Subscriber model is nothing new and there are many amazing solutions o The easiest way to explain this is with diagram bellow. Basic function is simple. We have subscribers that receive messages, and we have publishers that create and post messages. Similar model is also well know pattern that works on a premise of consumers and producers, and they take similar roles. -![How PubSub works](/assets/simple-pubsub-server/pubsub-overview.png) +![How PubSub works](/assets/simple-pubsub-server/pubsub-overview.png.dith.gif) **These are some naive characteristics we want to achieve:** @@ -49,7 +49,7 @@ Read more about it on [official specification page](https://html.spec.whatwg.org ### Current browser support -![Browser support](../assets/simple-pubsub-server/caniuse.png) +![Browser support](../assets/simple-pubsub-server/caniuse.png.dith.gif) Check [https://caniuse.com/#feat=eventsource](https://caniuse.com/#feat=eventsource) for latest information about browser support. @@ -107,7 +107,7 @@ Google Chrome provides build-in debugging and exploration tool for [Server-Sent > You can debug only client side events that get received and not the server ones. For debugging server events add `console.log` to `server.js` code and print out events. -![Google Chrome Developer Tools EventStream](../assets/simple-pubsub-server/chrome-debugging.png) +![Google Chrome Developer Tools EventStream](../assets/simple-pubsub-server/chrome-debugging.png.dith.gif) ## Server implementation -- cgit v1.2.3