From 56537fe004f33068bdf0e3c42954aa42ed397713 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=AD=C3=B0ir=20Valberg=20Gu=C3=B0mundsson?= Date: Wed, 17 May 2023 17:30:28 +0200 Subject: [PATCH] Upd. --- content/django-server-sent-events.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/content/django-server-sent-events.md b/content/django-server-sent-events.md index 9db9bb1..a6dd846 100644 --- a/content/django-server-sent-events.md +++ b/content/django-server-sent-events.md @@ -21,6 +21,9 @@ server-sent events (also known as SSE) from Django in an asynchronous manner. So I set out to write a small, drumroll please, chat application! +This blog post documents my process of writing this application and how the bits +and pieces fit together. + The code for the chat application can be found at [github.com/valberg/django-sse](https://github.com/valberg/django-sse). @@ -50,7 +53,7 @@ which is something we would have to implement ourselves with websockets. All in all SSE is a much simpler solution than websockets, and in many (most?) cases that is all we need. -### A simple implementation +### A simple implementation of an SSE endpoint So lets get to some code!