this post was submitted on 05 Jan 2026
36 points (97.4% liked)

Web Development

4961 readers
10 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 2 years ago
MODERATORS
top 3 comments
sorted by: hot top controversial new old
[–] tuckerm@feddit.online 7 points 2 days ago

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.

[–] jimmy90@lemmy.world 2 points 2 days ago

come on luddites

we're all doing WASM in Rust these days

Effing thank you!