939
top 50 comments
sorted by: hot top controversial new old
[-] Oha@lemmy.ohaa.xyz 155 points 6 months ago
[-] joyjoy@lemm.ee 94 points 6 months ago

If given a choice between an electron app and nothing, I choose the electron app.

[-] Oha@lemmy.ohaa.xyz 57 points 6 months ago

same. still dont like them tho

[-] dabu@lemmy.world 16 points 6 months ago

I choose nothing.

Or a website

load more comments (1 replies)
[-] tsonfeir@lemm.ee 44 points 6 months ago

You hate electron or you hate developers who make inefficient electron apps? Some examples? (Serious question, because I make electron apps)

[-] I_like_cats@lemmy.one 104 points 6 months ago

There's no such thing as a efficient electron app. First electron apps have 80MB of overhead since electron needs to bundle a whole ass browser. Also in runtime this requires 120MB of ram.

If you really want to use webviews to make an app use Tauri.

[-] masterspace@lemmy.ca 19 points 6 months ago

The literal most popular IDE amongst software developers is VS Code that's built on Electron.

[-] I_like_cats@lemmy.one 50 points 6 months ago

I know. I also use VSCode. However I just hate how much ram it uses. I had a Laptop with 4Gb of ram and I could not open VsCode on that thing when I had literally anything else open because the system would freeze.

Just because VsCode uses Electron doesn't mean that Electron is not bad

[-] naught@sh.itjust.works 16 points 6 months ago

Tbf, it's typically language servers and extensions causing cpu and memory footprints. If you were to open a dumb txt file, I doubt you'd encounter issues. The app itself is pretty light. I say this as a neovim user who has managed to make its memory footprint balloon ^_^

load more comments (1 replies)
load more comments (4 replies)
[-] ExLisper@linux.community 13 points 6 months ago

I think parsing code and all the dependencies will require way more than 120MB of RAM so for VS Code the overhead doesn't matter that much. For smaller apps 120MB of ram is insane.

load more comments (2 replies)
load more comments (1 replies)
load more comments (5 replies)
[-] 30p87@feddit.de 28 points 6 months ago* (last edited 6 months ago)

Mainly electron itself. For example the discord app (which uses electron) is less memory efficient (and much more restrictive etc.) than just a separate Firefox instance. It also had many problems with being up to date, but that's due to the discord devs deciding they want an own, custom electron, based on an outdated version. The main problem with electron for me stems from the chromium base, as basically any large app based on chromium (discord, spotify and steam) has massive flickering and performance problems on Wayland+Nvidia. A special combination, but still a factor for a 'cross platform' framework.

On the other hand, stuff like Signal never had any problems on my machine.

So, just use the stock electron, optimally the system one [electron binary], and see if you can enable wayland compatibility natively (otherwise we need to use environment variables etc., which works moderately at best).

load more comments (5 replies)
[-] Oha@lemmy.ohaa.xyz 8 points 6 months ago

Developers who make inefficient apps. Most apps are sadly utter garbage

load more comments (1 replies)
load more comments (4 replies)
[-] savvywolf@pawb.social 136 points 6 months ago

A pile of HTML + JS is the only cross platform GUI toolkit that's practical to deploy.

I'm not really happy about it myself, but realistically there's not any other option than just bundling a website into a wrapper.

And to pre-empt any replies; your proposed solution must support Windows, Linux (X11 and Wayland), MacOS, iPhone, Android, Chromium and Firefox.

[-] hansl@lemmy.world 40 points 6 months ago
[-] Molten_Moron@lemmings.world 43 points 6 months ago

3 billion devices can't be wrong!

[-] hansl@lemmy.world 29 points 6 months ago

Real talk; if Java didn’t have their head up their own arses, it would have been the real solution. But Oracle does what Oracle does.

Do not anthropomorphize Larry Ellison.

[-] Carighan@lemmy.world 19 points 6 months ago

And to pre-empt any replies; your proposed solution must support Windows, Linux (X11 and Wayland), MacOS, iPhone, Android, Chromium and Firefox.

If you are a website, that's easy, you are actually making the correct choice with Electron insofar that you want a browser.

If you're doing an application not a webpage, then we're walking W+L+Mac+Phones, that's more tricky. I'm assuming for a second you want a usable UI (otherwise we'd be using Electron again :P ) so we're talking two applications at least, one for mobile, one for desktop + maybe iPads.

And then it's usually already too pricey to bother:

  • Web frontend devs are far cheaper than application developers.
  • Might as well just do a website, runs in everything. Only need to develop once.
  • Updating is immediate with a website, don't have to do any deployment/upgrade/downgrade plans.
[-] PixxlMan@lemmy.world 15 points 6 months ago* (last edited 6 months ago)

I think Flutter and Avalonia both tick all those boxes.

load more comments (2 replies)
[-] backhdlp@lemmy.blahaj.zone 8 points 6 months ago

If you count browser engines, don't forget Webkit.

[-] greenskye@lemm.ee 8 points 6 months ago

Why is Firefox a 'platform'? I'm assuming chromium is for chromeOS devices, but I don't know of any device that just runs Firefox.

[-] Commiunism@lemmy.wtf 21 points 6 months ago

they probably meant web versions of the app that run both on chromium and gecko (firefox) browser engines

load more comments (2 replies)
[-] jw13@beehaw.org 6 points 6 months ago

Chromium and Firefox are web browsers, of course they only support HTML+JS. That’s what they were designed for.

[-] dan@upvote.au 10 points 6 months ago* (last edited 6 months ago)

of course they only support HTML+JS.

WebAssembly is becoming more popular, which lets you run code written in languages other than JavaScript in a browser. It's not possible to do everything yet, so you still need some JS code and a bridge between the WASM and JS, but it's getting there. Emulators that run in the browser often use it.

load more comments (1 replies)
load more comments (5 replies)
[-] Anticorp@lemmy.ml 101 points 6 months ago

"Here's a website that you needed to install on your phone to see!"

[-] meliaesc@lemmy.world 47 points 6 months ago

They want you to install the app so they cand send you notifications/ads.

[-] Anticorp@lemmy.ml 38 points 6 months ago

Yup. That plus steal all your contacts and anything else they can get direct or indirect permissions for.

load more comments (3 replies)
[-] ExLisper@linux.community 78 points 6 months ago

I though the same but I tried Tauri and it makes sense. Unlike electron you're not shipping the entire browser with your app and the the low level stuff is just rust so the integration is nice and easy. And using webview for UI? Why not? The reactive libraries are actually nice to work with, it's easy to customize, you have all the tools to inspect/debug your code. It's definitely better then trying to fit GTK into rust.

[-] lobut@lemmy.ca 14 points 6 months ago

I'm using Tauri to play around with Rust. I like it so far.

I always thought it uses far fewer resources than electron.

load more comments (3 replies)
[-] Presi300@lemmy.world 49 points 6 months ago

If you don't like webapps, make native UI frameworks easier to use and cross-platform...

load more comments (2 replies)
[-] Dmian@lemmy.world 41 points 6 months ago

Steve Jobs in 2007:

The full Safari engine is inside of iPhone. And so, you can write amazing Web 2.0 and Ajax apps that look exactly and behave exactly like apps on the iPhone. And these apps can integrate perfectly with iPhone services. They can make a call, they can send an email, they can look up a location on Google Maps.

And guess what? There’s no SDK that you need! You’ve got everything you need if you know how to write apps using the most modern web standards to write amazing apps for the iPhone today. So developers, we think we’ve got a very sweet story for you. You can begin building your iPhone apps today.

Admit it, the man was a visionary... XDDDDD

Just in case: /s

[-] marcos@lemmy.world 17 points 6 months ago

He was late to the party. Everyone by that time was trying to make applications and web development converge. Mozilla had an entire framework derived from the web.

[-] Dmian@lemmy.world 7 points 6 months ago

By the year, I think this was before there was even an App Store (first generation iPhone was launched at the end of June, 2007). Jobs really believed in web apps, but the original iPhone had no power to handle them correctly, and a lot of the APIs that we have now were unthinkable at the time. I was just trying to be funny, really. :P

load more comments (2 replies)
[-] CodexArcanum@lemmy.world 40 points 6 months ago

You mean, it's all Electron? 🌍👨‍🚀🔫👩‍🚀

[-] zifnab25@hexbear.net 27 points 6 months ago

geordi-no Spend 500 hours re-engineering your application for each platform

geordi-yes Just using ten year old proven technology that's built on a universal backwards compatible framework

[-] xmunk@sh.itjust.works 18 points 6 months ago* (last edited 6 months ago)

I, too, love me some Qt... but I thought this discussion was about electron.

load more comments (2 replies)
[-] toastal@lemmy.ml 18 points 6 months ago* (last edited 6 months ago)

At least webviews don’t (yet, Google be trying) have the ability to request attestation & ban me for not using the stock, bloatware OS every device comes with. Bonus that I get to keep my data inside the browser’s sandbox; it’s the easiest way to be safe with proprietary software.

If only my bank could get the memo & make their website not suck (it legit checks for Netscape Navigator 4 in the source) so I can be at peace with microG+LineageOS in the phone space (all the banks here do it & I already switched once until my bank, slowly but inevitably ‘modernized’ their app).

load more comments (1 replies)
[-] shiveyarbles@beehaw.org 18 points 6 months ago

We switched to Flutter, works great for IOS and Android, but the website is trash.

[-] ExLisper@linux.community 6 points 6 months ago

I tried Flutter and hated it. It was buggy (there's thousands of post on the internet saying that you have to do 'rm ios/Podfile && flutter build ios' and similar. the build breaks often and standard solution is 'turn it off and on again'), the components library is too verbose and not nice to work with, the support was bad (as in open a bug report with example repo and they would react after 6 months) and everything that's not 'hello world' was complicated or impossible (like writing tests). I'm definitely not using it again.

load more comments (1 replies)
[-] CannotSleep420@lemmygrad.ml 15 points 6 months ago

Tauri uses the OS's built in webview libraries as opposed to bundling a whole browser engine like electron. It's still not as good as native in terms of size and speed, but it should be a lot better than electron.

load more comments (3 replies)
load more comments
view more: next ›
this post was submitted on 12 Dec 2023
939 points (98.8% liked)

Programmer Humor

31213 readers
2156 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 4 years ago
MODERATORS