Many projects I hope to work on are web-based. So, I've been researching how to structure said projects without causing NodeJS-induced mental trauma. Here's what I propose is a nice way to create useful web apps using standard technology everyone knows.
1. If it can be static, make it static
Frankly, I'm sick of blogs and tutorial sites like this that take forever to load for content that, on this site, would appear instantly. Sometimes, it's just my internet being slow, but I find that most of the time, it's typically because the website designer decided it would be a good idea to build their simple blog on massive frameworks like React or Angular. This should not be the norm.
If your website, or pages on it, do not have any dynamic content, just write the HTML for them. If they do, first try and see if you can achieve the same with CSS or inline JavaScript. Only generate your content on the server if it can't be made locally.
2. Don't be afraid of JavaScript
This is more of a personal affirmation than anything else. There was a period of time, within recent memory, where I would actively isolate myself from any libraries or technologies associated with JavaScript, searching everywhere for hacks and frameworks to avoid this perceived disease. In hindsight, this is very stupid. It is a plain fact that you have to use JavaScript in order to make productive web-based projects and, in certain areas, it's actually the best choice. So, get over your adversity to "bloat" and go read Eloquent JavaScript.
That being said, I still believe that most people are using JavaScript in the wrong places. Simply put, NodeJS and projects like it should never be touched. Taking a language specifically designed for client-side interactivity into a server-side data-processing domain doesn't sound very wise to me. Any statically-typed compiled language would easily outperform NodeJS and would probably be a better programming experience. You can use Go, Rust or even C(++) if you're masochistic.
3. Prefer SQL as a database
In my limited experience with both, I found SQL easier to query and manage than MongoDB. An SQL database is simple enough that, if desired, it can be stored alongside the program binary (in the case of SQLite), whereas MongoDB is typically hosted for you on something like Atlas, which I find unnecessarily complicated.
Of course, there are scenarios in which a NoSQL database is better, like improved record flexibility. I would recommend that you try SQL as a start and, if needed, migrate to MongoDB.
4. Use Tailwind CSS
I find Tailwind CSS to be a perfect accessory to HTML, encouraging rapid website design and easy iteration. You should use the Play CDN during development, and have a static CSS build step during deployment. Pretty standard procedure.
It is important to still know some basic CSS, though. Don't rely on someone's template widget to save you when you need a super specific design.
5. Use WASM for serious computations or ports
If your web app has any math procedures, advanced rendering or complex state at a large scale, you should consider extracting these functions to a WebAssembly module written in C(++) or Rust. WASM is incredible for these purposes, and without it, many successful projects wouldn't exist.
Another appropriate use case is to port compiled desktop apps to the web. This is a perfectly acceptable use case, and has seen widespread use, mainly in game development.
What you shouldn't do is make a complete web frontend in WASM. DOM access doesn't yield any speed benefits over JS at the time of writing, and using WebGL to render a whole website introduces unnecessary complexity. In addition, you'll working with frameworks and libraries that can be finicky and undocumented.
TLDR
Web apps should prefer static content, use compiled languages to present dynamic content made with CSS, prefer SQL as a backing database and use WASM to perform complex computations.