Does Node 20 produce statically linked binaries that can execute independently or does it require runtime libs? #63
Answered
by
RaisinTen
alias-rahil
asked this question in
Q&A
-
Would the process described in this article produce a standalone executable with no runtime dependencies? |
Beta Was this translation helpful? Give feedback.
Answered by
RaisinTen
Apr 19, 2023
Replies: 1 comment
-
It depends on the Node.js binary you are using because the code for your SEA gets injected into a copy of that binary when you build the SEA. If your base Node.js binary can execute independently, the SEA built using that Node.js version too will be able to execute independently. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
alias-rahil
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It depends on the Node.js binary you are using because the code for your SEA gets injected into a copy of that binary when you build the SEA. If your base Node.js binary can execute independently, the SEA built using that Node.js version too will be able to execute independently.