How would you create a self-contained binary that doesn't require a JS runtime? #691
Unanswered
i-am-the-slime
asked this question in
Q&A
Replies: 2 comments
-
I'm not sure if Ink supports it but I think it can be done using QuickJs. The QuickJs compiler produces a small and independent binary for distribution that runs without depending on external runtime like NodeJs. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Bun will include itself and let you create a single file, but it will not be as lightweight as something created with go |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
One thing that the go library bubble tea has over ink from what I can tell is that because they're using go, it's quite simple to create binaries that you can simply ship to others without them needing to install
node
orbun
or whatever.Does anybody know of a way to maybe bundle a lightweight node runtime with an ink application or any other way around this?
Beta Was this translation helpful? Give feedback.
All reactions