Replies: 1 comment 2 replies
-
No, it's practically plain text. You can even open the compiled binary in vim and go at the end and you'll see your code with comments and everything |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Does Deno compile down to binary, bytecode or something? E.g. if I run "deno compile myfile.ts". Will my logic inside of myfile.exe be unreadable/un-extractable by malicious users? Or can my code be unpacked to expose the .js files?
I'm thinking about writing my business logic as a commandline application that I will bundle with my Electron app. The main reason for this is that I want to keep my source code (business logic) private (or at least make it very difficult to copy and tinker with).
But pretty big secondary benefit is that I can reuse the commandline app if I ever need to ditch Electron.
Beta Was this translation helpful? Give feedback.
All reactions