this post was submitted on 29 Oct 2025
48 points (98.0% liked)
Web Development
4728 readers
3 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
- Follow the programming.dev site rules
- Keep content related to web development
- If what you're posting relates to one of the related communities, crosspost it into there to help them grow
- If youre posting an article older than two years put the year it was made in brackets after the title
Related Communities
- !html@programming.dev
- !css@programming.dev
- !uiux@programming.dev
- !a11y@programming.dev
- !react@programming.dev
- !vuejs@programming.dev
- !webassembly@programming.dev
- !javascript@programming.dev
- !typescript@programming.dev
- !nodejs@programming.dev
- !astro@programming.dev
- !angular@programming.dev
- !tauri@programming.dev
- !sveltejs@programming.dev
- !pwa@programming.dev
Wormhole
Some webdev blogs
Not sure what to post in here? Want some web development related things to read?
Heres a couple blogs that have web development related content
- https://frontendfoc.us/ - [RSS]
- https://wesbos.com/blog
- https://davidwalsh.name/ - [RSS]
- https://www.nngroup.com/articles/
- https://sia.codes/posts/ - [RSS]
- https://www.smashingmagazine.com/ - [RSS]
- https://www.bennadel.com/ - [RSS]
- https://web.dev/ - [RSS]
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
if you want fast web pages there's nothing faster than pure CSS and HTML. those are both running native machine code in the Web browser directly.
JavaScript (with or without frameworks) gets slower the more things you do with it as it only works in a single event loop. this means one function you wrote that takes a long time blocks everything else from finishing until it completes, even the browser rendering and interactions. that's why really bloated pages feel like they're lagging and you can't click buttons or scroll.
imo do as much in CSS and HTML and use native web components for reusable components that you can drop anywhere in your HTML. if you want it to feel like an application, since you have backend experience you could use web assembly but treat this as a single application, it's not really meant to replace html/JavaScript