Lionel
Lionel9mo ago

Performance Question

I have a Deno application, which creates API endpoint, and uses mongodb. Now I want to host this on a Ubuntu server. Performance-wise, should I just copy the source code and use the Deno command to run it, or should I create a executable (using the deno cli)?
4 Replies
Lionel
Lionel9mo ago
So basically: Does creating an executable have an performance impact (in comparison to just running the TS files)?
raunioroo
raunioroo9mo ago
should be negligible difference, if any. no need to compile
NeTT
NeTT9mo ago
the executable is just the TS file with deno packed with it shouldn't be any different
Lionel
Lionel9mo ago
Ah okay Thank you!