this post was submitted on 03 Feb 2024
488 points (94.2% liked)

Programmer Humor

32051 readers
1618 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[โ€“] fidodo@lemmy.world 6 points 7 months ago (1 children)

Elder developer too, you can easily render react server side and statically. Once you remove state, react simply becomes pure functions that output jsx nodes, it's also dead fucking simple, but gives the the possibility to add hydration and state later if you need it.

[โ€“] xmunk@sh.itjust.works 3 points 7 months ago

This is actually excellent advice for performance - you can bake the initial page data in!