this post was submitted on 20 Feb 2025
15 points (100.0% liked)

Web Development

3597 readers
27 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
 

So I've got a new domain and I want to do some fun stuff with it. Specifically, I'm looking for something that's fun to make as well as use.

I've got experience making webservers in p much every major language. My first instinct is to use NextJS just because it's fast and I've used it most recently, but then I also feel the allure of just rawdawging my own HTML/CSS+JS, like my forebears might've done. XML is kind of a pain to handbomb, though; all those closing tags, etc... Though I'm sure there are plugins for that.

Any suggestions? What was the last tool you used that really sparked your joy of creativity? Any really fun frameworks, stacks, editors, etc?

top 5 comments
sorted by: hot top controversial new old
[–] somegeek@programming.dev 2 points 2 days ago

Making a simple, clean website with an ssg (like zola) with only HTML+CSS is an art of engineering imo.

If you want to make a giant website with lots of interactivity tho, I highly recomment nuxt. Much much better than next

[–] rimu@piefed.social 5 points 2 days ago (1 children)
[–] grrgyle@slrpnk.net 0 points 2 days ago

Thank you, this is perfect! I love how they highlight the small web, too. Exactly the right vibe for a small, personal project.

[–] Dunstabzugshaubitze@feddit.org 2 points 2 days ago (1 children)

hotwire(turbo+stimulus.js)

used it with a java (spring) backend and with a python(flask) backend to get rid of some page reloads and an easy way to display information based on something happening in the backend via server sent events. did not need to do much more than wrap parts of the existing html templates in -elements and the client code to handle server sent events was pretty small to. fun experience, especially because most of my code stayed in languages, iam way more comfortable with than javascript.

htmx would have worked simmiliar, but i had prior experience with turbo, so i used that.

[–] grrgyle@slrpnk.net 0 points 2 days ago

This is really cool. Thanks for the brief intro too. I definitely will be trying this out when I start pushing events from the backend. It'll be fun to check out something other than React for once.