this post was submitted on 08 Sep 2026
5 points (100.0% liked)

Web Development

5817 readers
16 users here now

Welcome to the web development community! This is a place to post, discuss, get help about, etc. anything related to web development

What is web development?

Web development is the process of creating websites or web applications

Rules/Guidelines

Related Communities

Wormhole

Some webdev blogsNot sure what to post in here? Want some web development related things to read?

Heres a couple blogs that have web development related content

CreditsIcon base by Delapouite under CC BY 3.0 with modifications to add a gradient

founded 3 years ago
MODERATORS
top 3 comments
sorted by: hot top controversial new old
[–] ICastFist@programming.dev 4 points 1 day ago (2 children)

if we keep the HTTP connection open indefinitely, we can dynamically update the page from the server, without any JavaScript!

Isn't that what chatrooms did back in the 1990s? I'm 90% sure that's how they did it back then

[–] JakenVeina@midwest.social 3 points 20 hours ago

Setting aside the fact that WebSockets are a well-defined mechanism for maintaining a persistent long-running connection to a web server...

This is how .NET Blazor works (for one of its modes), where all rendering and processing is done server-side, and the client just has a small JS/WASM bundle that posts updates to the DOM, and sends DOM events to the server. And it's ASS.

[–] FizzyOrange@programming.dev 3 points 1 day ago

Yeah he has rediscovered long polling.