this post was submitted on 05 Jan 2026
36 points (97.4% liked)
Web Development
4976 readers
1 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
I'm definitely a fan of avoiding huge frameworks.
One complaint I have about plain old JS and HTML, though, is that you end up writing a lot of HTML components as just strings. Plain strings of text that is supposed to be valid HTML, but you're not going to get any help with formatting, linting, or even just syntax highlighting when a lot of your code is literally just a big string. The example of Web Components in this post even shows that.
It mentions developer experience vs. user experience as a nod to this, and the "every HTML components is just a big old javascript string" problem is one I always run into early on with my hobby projects, which makes me decide to use a small UI framework pretty quickly. My favorite is Mithril. It's tiny and does basically what you want React to do, without being React. You write these nested Javascript functions that get turned into HTML. So there's no extra loader step, and it plays nicely with Typescript.