From 25023a8da8bf1c78d141896ca8966674fcbc7d52 Mon Sep 17 00:00:00 2001 From: Andros Fenollosa Date: Sat, 9 Mar 2024 11:48:57 +0100 Subject: [PATCH] Update text --- one.org | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/one.org b/one.org index d205db2..0aeb436 100644 --- a/one.org +++ b/one.org @@ -40,15 +40,14 @@ The same process is repeated for each action, such as clicking a button, submitt ** What are your superpowers? -- Create SPAs without using APIs. -- Uses Django's template system to render the frontend (Without JavaScript). +- All in real time. The data is sent and received instantly. +- Single connection. You don't need to open and close connections like calls to an API. +- Create SPAs without using APIs o JavaScript frameworks. +- Uses Django's template system to render the frontend (The use of JavaScript is anecdotal). - The logic is not split between the backend and the frontend, it all stays in Python. - You can still use all of Django's native tools, such as its ORM, forms, plugins, etc. - Everything is asynchronous by default. - Don't learn anything new. If you know Python, you know how to use Django LiveView. -- All in real time. - -Now you can create SPAs without using APIs, without JavaScript, and without learning anything new. If you know Python, you know how to use Django LiveView. Are you ready to create your first Realtime SPA? Let's go to the [[#/docs/quickstart/][Quickstart]].