Replies: 1 comment 1 reply
-
This library provides a service runner, not a bundler. The exe produced by this library is just a service runner, not a standalone app. If you want a standalone bundle (i.e. a single exe), use a bundler like pkg. Alternatively, Node.js 20.0.0 shipped with experimental single executable application (SEA) support. Beware that these processes merely merge your code with the node executable, so the file size is large, even for a simple "hello world" script (~60MB for pkg/~90MB for SEA). Electron has some optimization capabilities that can get executables down to ~45MB after unnecessary extras are stripped out. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is it possible to use this library to create a
.exe
file for shipping to customers where the service gets onside created? So I would like to avoid shipping the whole node project and would rather send the.exe
file to the customer.Thanks in advance!
Beta Was this translation helpful? Give feedback.
All reactions