How to obfuscate project before compile it ?
Hello,
is it possible to obfuscate the code before compile it ? The code is still visible if you open the exe file with notepad/vscode
2 Replies
No built in way. You'd have to use some third party minifier/obfuscate tool(s) to make your JS or TS source tree not-that-human-readable first. Esbuild maybe, or something else.
My project use Deno and NPM module. Do you think it could work ?