Slide 4
Slide 4 text
Basics - TLDR; Turbo, Hotwire:
● Turbo is part of Hotwire
● Hotwire minimizes the need for Javascript (huray!), by delivering HTML
"over the wire"
● Hotwire is used more and more in RoR environment
● Focus is to render templates on the server side, deliver them to the
client without rendering the whole page, but only the needed part of it
● No need to refresh the whole page to see the changes from client
actions on the page (form submissions, path changes (SPA-like))
● TurboStream "delivers page changes over WebSocket, Server-Sent Events
or in response to form submissions"