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