• unalivejoy
      link
      fedilink
      English
      9210 months ago

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

      • ThyTTY
        link
        1510 months ago

        I choose nothing.

        Or a website

    • @[email protected]
      link
      fedilink
      4210 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
        9310 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
          2210 months ago

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

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

            • @[email protected]
              link
              fedilink
              1510 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
                9 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
            1210 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
            fedilink
            410 months ago

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

        • @griefreeze
          link
          310 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
            910 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
            English
            310 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
              210 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.

      • ɐɥO
        link
        fedilink
        710 months ago

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

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

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

          • @[email protected]
            link
            fedilink
            English
            110 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
    13010 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
      link
      3810 months ago

      Java, of course. /s

        • @hansl
          link
          2910 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
      2010 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
      link
      14
      edit-2
      10 months ago

      I think Flutter and Avalonia both tick all those boxes.

        • @PixxlMan
          link
          610 months ago

          Just checked, and unfortunately no, Wayland is still in preview.

    • @[email protected]
      link
      fedilink
      English
      910 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
        2010 months ago

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

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

    • @[email protected]
      link
      fedilink
      310 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 🤷‍♂️.

    • @replicat
      link
      110 months ago

      JUCE is weirdly capable of non-audio related UIs and runs on all these platforms.

    • @meliaesc
      link
      4610 months ago

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

      • SokathHisEyesOpen
        link
        fedilink
        English
        3710 months ago

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

  • @[email protected]
    link
    fedilink
    English
    7310 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
      1310 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
          510 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
            310 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
    English
    4910 months ago

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

    • @xantoxis
      link
      110 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
        10 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.

  • @Dmian
    link
    English
    42
    edit-2
    7 months ago

    deleted by creator

    • @marcos
      link
      1610 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
        link
        English
        6
        edit-2
        7 months ago

        deleted by creator

        • @hansl
          link
          610 months ago

          Jobs, whether or not he truly believed in that, gave the potential of web apps and HTML5 as the reason an App Store wasn’t needed. And definitely the reason Flash wasn’t needed.

          • @Dmian
            link
            English
            2
            edit-2
            7 months ago

            deleted by creator

  • Codex
    link
    3910 months ago

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

  • @[email protected]
    link
    fedilink
    English
    16
    edit-2
    10 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
      210 months ago

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

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

        • @[email protected]
          link
          fedilink
          English
          2
          edit-2
          10 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
          -110 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?

          • @some_designer_dude
            link
            910 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.

          • @pleasejustdie
            link
            English
            710 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
      1110 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.

      • @FooBarrington
        link
        18
        edit-2
        10 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”?

      • @TeddE
        link
        210 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.