Lionel
Lionel15mo 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
LionelOP15mo ago
So basically: Does creating an executable have an performance impact (in comparison to just running the TS files)?
raunioroo
raunioroo15mo ago
should be negligible difference, if any. no need to compile
NeTT
NeTT15mo ago
the executable is just the TS file with deno packed with it shouldn't be any different
Lionel
LionelOP15mo ago
Ah okay Thank you!

Did you find this page helpful?