How to serve deno binary from deno compile ? #14926
-
hi :) I tried to compile a small mod.ts into a full binary (with deno compile) What's the proper way to serve a deno binary ? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
https://deno.land/x doesn't serve binaries, it serves modules (scripts). You only really need |
Beta Was this translation helpful? Give feedback.
https://deno.land/x doesn't serve binaries, it serves modules (scripts). You only really need
deno compile
if you're writing an application that you want to be able to ship somewhere that may not have the right version of deno. If you're writing a library or a script that you want to be able to import or run via url, you don't needcompile
.