|
|
|
|
|
by StuckDuck
1353 days ago
|
|
> Have you considered that your computer is the problem? I wouldn't say so, Elementary OS's built in code editor takes a few seconds at most to open a file Then again, Electron is really slow (among other things), but anyways, regardless of the toolkit you're using, your app is still an overly complex .html page, doing things the DOM was never meant to do or programmed for, e.g. DOM traversal becomes slow. (Unless you use something like React Native, which is 'truly native', but mobile only) Honestly the idea of web apps sounds a whole lot like trying to make a video editor app in MS Word |
|
I mean, maybe it was true when browsers were hypertext-only applications, but now they are performant app-delivery toolkits.
Native might get higher performance, but at a fairly steep cost of coupling and distribution difficulty. I can deliver insanely powerful apps to many OSs and form factors on a 512kB bundle, meanwhile native mobile apps come in at 60-500MB for 1 platform. It's also not really that hard to have smooth 60fps display on big datasets & visualizations, which means I contest what "slow" really means for DOM traversal.
Seems to me like you're hell bent on discounting this one platform instead of arguing the tradeoffs are not worth it, which is a shallow take from my view.