Replies: 1 comment
-
There has been no progress on the Option B, the core team currently doesn't have the capacity to look into it. I'll be happy to provide pointers how option B could be implemented starting as a community project. |
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
-
As mentioned in this comment, there are two approaches two compile a deno file into binary (correct me if I'm wrong):
It seems like we're using the first approach, and in the issue mentioned before the second approach is being worked on. I would like to ask the progress.
Actually there are quite a few disadvantages of the first approach. First the emitted binary is large (~70 MB for a
console.log("Hello, world!")
). Second the source code is directly available through the binary (it's included at the end of the binary in plain text!). The second approach seems promising to solve these two problems.Beta Was this translation helpful? Give feedback.
All reactions