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

Did you find this page helpful?