←back to thread

50 points senfiaj | 1 comments | | HN request time: 0s | source
Show context
Cthulhu_ ◴[] No.45809144[source]
I work in enterprise, B2C software, lots of single page apps / self service portals, that kind of thing. I don't think our software is bloated per se; sure it could be faster, but for example when it comes to mobile apps, it's a tradeoff between having the best and fastest apps, being able to hire people, development speed, and non-functional requirements.

It's good enough, and for example React Native is spending years and millions in more optimizations to make their good enough faster, the work they do is well beyond my pay grade. (https://reactnative.dev/blog/2025/10/08/react-native-0.82#ex...)

replies(2): >>45809288 #>>45809326 #
bombcar ◴[] No.45809288[source]
95% of portals could be done with 2000s tech (since they're basically CRUD apps) - the question is what it is worth to make them that way.

And the answer is almost always "nothing" because "good enough" is fine.

People like to shit on development tools like Electron, but the reality is that if the app is shitty on Electron, it'd probably be just as shitty on native code, because it is possible to write good Electron apps.

replies(2): >>45809683 #>>45815486 #
1. eviks ◴[] No.45809683[source]
> but the reality is that if the app is shitty on Electron, it'd probably be just as shitty on native code

Right off the bat it'll save hundreds of MB in app size with a noticeable startup time drop , so no, it won't be just as shitty.

> because it is possible to write good Electron apps.

The relevant issue is the difficulty in doing that, not the mere possibility.