Hacker News new | ask | show | jobs
by kusti8 3048 days ago
It's not totally ready for production because the GUI library that I'm using is not totally polished. My part I would say is Beta, and the GUI library is versioned as alpha. For most tasks it will work fine. For more complex stuff you will obviously want something more robust.

With Windows, the .dll is compiled on npm install, and that works perfectly. Currently I don't think libui supports icons.

I chose libui because it is the only GUI library for JS that I could find. It is nice and fits well with React, but it does have some holes. The author is going to continue development soon, so some of the problems should be fixed in the future.

A MSI can be generated using an installer such as NSIS.

1 comments

How is the memory usage compared to Electron?
Memory usage is a lot less. Electron has a full webbrowser running to display the page, which this uses Gtk on Linux or cocoa on Mac etc.
I'd love to see some benchmarks when you have a chance to update it.