this post was submitted on 18 Nov 2024
5 points (100.0% liked)

Web Development

3443 readers
44 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 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[โ€“] riskable 3 points 3 days ago (1 children)

First "myth" is wrong. Loading CSS and JS with every click isn't about being "slow" it's about being efficient. CSS and JS requests add a non-trivial load to the server. So if you have 10,000 clients making requests for content they already have cached (they're just checking to see if these assets changed) then you're wasting server resources when you could've just kept the single page active and requested just what you needed over an AJAX call or even better: A WebSocket.

[โ€“] GetOffMyLan 2 points 11 hours ago

It's essentially why people have moved away from server side rendering.

It is way less resource intensive to send just the data and let the client do the rendering. Both in data transfer and compute.