• unalivejoy
      link
      fedilink
      English
      907 months ago

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

    • @[email protected]
      link
      fedilink
      427 months ago

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

      • @[email protected]
        link
        fedilink
        957 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.

        • @[email protected]
          link
          fedilink
          English
          207 months ago

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

          • @[email protected]
            link
            fedilink
            487 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
              link
              157 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 _

              • @[email protected]
                link
                fedilink
                English
                3
                edit-2
                6 months ago

                Can confirm. No matter how lightweight your IDE claims to be, if rust-analyzer uses 1GB RAM per project you have open and takes 30 seconds to start up, then that’s that.

                Source: learned Neovim having been promised it would be a lightweight alternative to a more mainstream IDE that would also speed up programming with keyboard shortcuts. By the time I added enough plugins to make it usable, only one of those two things was even debatably true.

          • @[email protected]
            link
            fedilink
            English
            127 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.

          • boletus
            link
            47 months ago

            I love vs code but that does not mean electron doesn’t suck

        • @[email protected]
          link
          fedilink
          37 months ago

          This comment feels like it just stepped out of a time machine. I can’t remember the last time I fretted over 200MB of overhead/memory usage.

          I’m in no way judging you, merely commenting on how different our use cases and expectations are.

          • @[email protected]
            link
            fedilink
            97 months ago

            This is a problem. Computers got faster over time and one would assume apps would also open faster. But no, developers that don’t care about their application’s performance (or companies, most of the time it’s not the developer’s fault) cause us to wait longer. Microsoft recently tweeted that they managed to get Microsoft Teams startup time down to 9 seconds from 18. I mean what the fuck.

          • Pyro
            link
            fedilink
            English
            37 months ago

            Last I checked, almost none. They provide a JS API for common functions, so as long as you’re keeping things relatively simple you might not have to touch much Rust at all.

            • @[email protected]
              link
              fedilink
              27 months ago

              Huh, that’s neat. From their docs it does seem like aside from some scaffolding, I shouldn’t need to write much Rust.

      • @[email protected]
        link
        fedilink
        24
        edit-2
        7 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).

      • ɐɥO
        link
        fedilink
        77 months ago

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

        • @[email protected]
          cake
          link
          fedilink
          English
          17 months ago

          Capitalism forces developers hands into taking the cost-cuttingest approach to everything over doing it right.

          • @[email protected]
            cake
            link
            fedilink
            English
            17 months ago

            At least Google does this one. Mozilla & Apple like to lag on the PWA front. Sucks that Mozilla dropped SSB before it ever even launched. Apple only just this year announced supporting the Notification API which ended up stonewalling a past project since it was a required feature for our app.

  • SavvyWolf
    link
    fedilink
    English
    1317 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.

        • @[email protected]
          link
          fedilink
          297 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 Maconar
      link
      fedilink
      197 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.
    • @[email protected]
      link
      fedilink
      English
      87 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.

      • @[email protected]
        link
        fedilink
        207 months ago

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

      • SavvyWolf
        link
        fedilink
        English
        67 months ago

        As Communism said, yeah I was ment a web application. No need to spend dev time working on a different version of your app if you can just reuse the web version.

    • @b_n
      link
      37 months ago

      I know the guy working on makepad is trying to solve this problem along with vr headsets, Apple tv, etc. It’s really painful because of dependency bloat messing with build times so he ended up rewriting a bunch of things 🤷‍♂️.

      • SokathHisEyesOpen
        link
        fedilink
        English
        377 months ago

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

      • SokathHisEyesOpen
        link
        fedilink
        English
        77 months ago

        Definitely! I work at a computer 8-10 hours per day, 5 days a week. The last thing I want to do when I’m done working is sit at computer some more. I do almost all of my browsing on my phone. Firefox Mobile Nightly, plus NextDNS, plus Nord VPN, plus uBlock origin, plus a fake user agent string. I’m pretty secure on my phone.

      • Taco
        link
        fedilink
        English
        37 months ago

        Bruh. Phones are just essentially ARM + Linux pocket PCs.

  • @[email protected]
    link
    fedilink
    English
    757 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.

    • @[email protected]
      link
      fedilink
      137 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.

        • @[email protected]
          link
          fedilink
          57 months ago

          oh JS too, which kinda throws me off because I’m not bad with Web Dev, but I’m not good either and my UI looks like a bad web page than a good desktop app.

          I’m actually trying to keep it simple and write my own launcher like Alfred, Albert, Kupfer but I want it to launch my own custom scripts that I can load in a directory as well.

          • @[email protected]
            link
            fedilink
            English
            37 months ago

            Yeah, UI is hard. I try to use good component librarian as much as possible but actually making it look consistent is difficult.

            For the UI I’m using leptos. It’s actually very nice and using rust on both front and back means there’s couple less things to worry about.

  • Presi300
    link
    fedilink
    English
    487 months ago

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

    • @[email protected]
      link
      fedilink
      17 months ago

      lol they did, that’s what webapps RUN ON. TBH I don’t get the original complaint. Lots of people have bad webapps; back when native apps were the norm, lots of people had bad native apps. It’s not really a problem with the runtime framework.

      • @[email protected]
        link
        fedilink
        16
        edit-2
        7 months ago

        They run on them, but its not that easy compared to a web app. Why isn’t everyone programming in machine code? Every other language literally runs on it. There is a reason we use abscractions.

    • @[email protected]
      link
      fedilink
      167 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.

  • Codex
    link
    fedilink
    397 months ago

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

  • zifnab25 [he/him, any]
    link
    fedilink
    English
    287 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
      link
      17
      edit-2
      7 months ago

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

    • unalivejoy
      link
      fedilink
      English
      67 months ago

      You say that, but it seems every major electron update will break your app.

      • zifnab25 [he/him, any]
        link
        fedilink
        English
        27 months ago

        Sure. But that’s one point of failure relative to the N points tied to each major update to a “supported” platform.

  • @[email protected]
    cake
    link
    fedilink
    English
    17
    edit-2
    7 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).

    • Taco
      link
      fedilink
      English
      27 months ago

      But my beloved Netscape! How will I possibly learn a new browser? I’m too old to learn!

    • @rustydrd
      link
      24
      edit-2
      7 months ago

      Cross-platform apps - The Linux experience:

        • @rustydrd
          link
          37 months ago

          No, but when I have the choice between a platform-specific software I like and a cross-platform software I don’t, I usually go with the former.

          I’ve used Linux for much longer than Electron even exists, and I’ve learned to live with what I have available.

          • @rustydrd
            link
            17 months ago

            I do use some Electron apps, but I also can’t say I enjoy it much.

        • @[email protected]
          cake
          link
          fedilink
          English
          2
          edit-2
          7 months ago

          Yes & no is my take. Usually no Linux support means a free software app is born to replace it which is awesome–or better, a previously-obscure or deserves-revitalization free software application gets its moment in the sun (rather than reinventing shit that already works cough Matrix). …The downside is when employers/client/etc. demand you use some proprietary sludge so luckily you have Electron app to get over that hurdle–tho 90% of apps in this category largely should be fine in PWA form instead of needing Electron.

        • @[email protected]
          link
          fedilink
          English
          -17 months ago

          I’d rather just have it working properly inside a browser, instead of it telling me that it has this neat cross-platform app, which turns out to just be Electron. On mobile that can be fine, but I dislike it on Desktop, personally.

          Do excuse me if this is false, I have never actually worked with Electron on the developer side myself, however I don’t believe it offers anything you couldn’t do through a normally provided website. I know for example Discord only allows screen sharing in the desktop app, however I’ve also seen websites which allow screen sharing, so that seems more like an arbitrary restriction than anything. I mean, in the end it’s just a dedicated Chromium install for one single website, so where is the need to force the website onto your pc?

          • @[email protected]
            link
            fedilink
            97 months ago

            UX-wise, having a standalone “app” you can open and CMD-tab to is superior to “which of these 50 fucking tabs I have open is that app I was using…”

            But, Electron also wraps your “website” and provides APIs to OS-level stuff like the camera, files, etc. It’s really quite elegant and probably the way of the future. It will absolutely get more performant as it matures.

          • @[email protected]
            link
            fedilink
            English
            77 months ago

            It can do stuff that running in your browser can not. Since electron runs both the client-side code and the server-side nodeJS you can communicate between the rendering engine and the back-end for tasks that a web browser alone wouldn’t allow you to do, like accessing and navigating your local file system for example. Or if the app has a lot of assets and it needs to work offline, you can have the nodeJS backend download the files and encrypt them and have the front-end query the nodeJS and to get the decrypted assets and use the whole web app offline completely with a local database that you may sync with a webserver at some point later if or when internet connectivity is restored.

            For most apps its overkill, but Electron and NodeJS can do pretty much anything a native app can do (just slower and while using a LOT more resources than a native app) but can be done entirely by someone experienced in web frontend development and nodeJS.

    • Carighan Maconar
      link
      fedilink
      117 months ago

      Though calling them “cross platform” when all you’re doing is opening a website in a browser is IMO a bit rich. Is lemmy cross-platform, too?

      If at least they had native UI elements on each platform, we’d be getting somewhere. Fitting design and all.

      • @[email protected]
        link
        fedilink
        18
        edit-2
        7 months ago

        It’s not just “opening a website in a browser”. The UI itself is displayed in a WebView, but Electron (and Tauri etc.) also have code running outside the WebView which interfaces with native APIs etc. Just for a simple example - a normal browser application couldn’t open a file on your drive before without showing a dialog (and it still can’t without getting permission first), which Electron etc. can.

        And this code is absolutely cross-platform. So how is it rich to call an application with a cross-platform UI and cross-platform functionality “cross-platform”?

      • @[email protected]
        link
        fedilink
        27 months ago

        Would you prefer new terminology? Like platform-neutral UI? The way I see it there’s CLI, GUI, and WebUI. When discussing platforms for the first two, were discussing the OS, but for the last the platform is the browser.

        I honestly don’t care what the user interface is as long it’s efficient at getting done what I need it to do.