this post was submitted on 17 May 2025
3 points (56.0% liked)
Programming
20300 readers
369 users here now
Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!
Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.
Hope you enjoy the instance!
Rules
Rules
- Follow the programming.dev instance rules
- Keep content related to programming in some way
- If you're posting long videos try to add in some form of tldr for those who don't want to watch videos
Wormhole
Follow the wormhole through a path of communities [email protected]
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
First create the HTML DOM, then beautify with CSS, then script stuff with JS for functionality you can't do with HTML and Backend.
And read up on HTML tags, please. There's too much div-only crap already. And better go basic than fancy; fancy is more technical debt that blows up (or leaks your users passwords) along the road
Don't listen to the naysayers, they never did a website from scratch. And the usual frameworks have gone complex to a point that learning them and adjusting them to your needs eats more time than creating a basic website from scratch, while your websites performance and accessibility tanks. Imagine, a button not working just because you blocked third-party scripts!
Also enjoy your SQL injections, XSS injections and various other fun things that frameworks solve for you.
they don't solve them. They make it harder for you to make mistakes. Doesn't stop a capable developer from still introducing vulnerabilities.
that html page without js and just links is MORE secure than anything with JS.