this post was submitted on 01 Apr 2025
52 points (94.8% liked)
Asklemmy
47161 readers
683 users here now
A loosely moderated place to ask open-ended questions
Search asklemmy ๐
If your post meets the following criteria, it's welcome here!
- Open-ended question
- Not offensive: at this point, we do not have the bandwidth to moderate overtly political discussions. Assume best intent and be excellent to each other.
- Not regarding using or support for Lemmy: context, see the list of support communities and tools for finding communities below
- Not ad nauseam inducing: please make sure it is a question that would be new to most members
- An actual topic of discussion
Looking for support?
Looking for a community?
- Lemmyverse: community search
- sub.rehab: maps old subreddits to fediverse options, marks official as such
- [email protected]: a community for finding communities
~Icon~ ~by~ ~@Double_[email protected]~
founded 6 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
You can always write native apps or use rust. I don't recommend doing that unless perfectionism/being esoteric/learning is more important to you than just making the webapp.
The main issue with fb/TikTok is the 9 billion trackers and ads. So step 1. Don't do that.
Svelte/SolidJS are smaller/faster than react/ vue. React has the most tutorials, but I think vue is the easiest to learn.
Next, while working on your app (probably all of those use "vite" instead of web pack by now) meticulously watch your build size. Avoid installing giant dependencies if you can. If you have lots of options, pick libraries that are tree-shake-able. rollup-plugin-visualizer will help you visualize which Javascript file(s)/ dependencies are big. You'd be see surprised how many webapps that is basically 10kb of functionality ends up being 1MB of Javascript.
If your webapp is small you probably don't need to think too much more about this, but you could probably ask others to critique your code later.