What does HackerNews think of web-to-desktop-framework-compariso?

Why is this better than just using Dart/Flutter?

The introduction docs also claim "In Electron and NWjs, you have to install Node.js and hundreds of dependency libraries. Embedded Chromium and Node make simple apps bloaty. Neutralinojs offers a lightweight and portable SDK which is an alternative for Electron and NW.js."

Yet the installation here starts with NPM and depends on Node.

Sorry, but I don't see a significant difference between this and Electron just from the comparison chart linked in the docs. https://github.com/Elanis/web-to-desktop-framework-compariso...

Save for the fact that Neutralinojs is not listed as having any support for automated testing where Electron does.

The data there shows smaller and faster builds on empty apps but that doesn't count for much since no one ships empty apps.

Needs a fair comparison against its claimed competitors using app examples that at least mimic real world apps. For example, if building the typical kind of application people would build in Electron still results in a smaller deliverable and much faster build, that would start to make a case for a better developer experience.

Though I would guess that most developers would not switch and learn a new framework just to get slightly faster builds before considering test time. Integration test run times tend to take up most of the time in any build process.

not for nothing... but from their comparison chart, it looks like .Net Maui is the better option:

https://github.com/Elanis/web-to-desktop-framework-compariso...

I looked into some alternatives a while back [1] and thought Neutralino looked promising except that it doesn't support node modules. I.e. you cannot use the existing ecosystem of node-stuff.

Still, glad there are many options for using web UI to create desktop apps these days.

[1]: Neutralino themselves link to this nice comparison table: https://github.com/Elanis/web-to-desktop-framework-compariso...

and https://neutralino.js.org/

Their exciting part is

> You can extend Neutralinojs with any programming language (via extensions IPC) and use Neutralinojs as a part of any source file (via child processes IPC).

still:

> Neutralinojs doesn't bundle Chromium and uses the existing web browser library in the operating system (Eg: gtk-webkit2 on Linux). Neutralinojs implements a WebSocket connection for native operations and embeds a static web server to serve the web content.

Comparison with Electron, Tauri and more: https://github.com/Elanis/web-to-desktop-framework-compariso...

> but it uses your system's existing browser

According to (1) that is incorrect. It uses WebKitGTK+.

(1) https://github.com/Elanis/web-to-desktop-framework-compariso...