subbed
deno compile optimizations
i'm relatively new to deno and find the compilation part interesting. reading the reference, it seems to bundle the deno runtime in the binary. my question is, is there anything else the compilation does? are there any form of ahead-of-time optimizations done?
i'm looking into compiling my hono apps and am wondering of all the potential benefits of doing so. thank you.
2 replies
Deno error on Hono Swagger UI
Hello. I am receiving a Deno error on the following snippet:
The problematic line is apparently this one:
app.get("/ui", swaggerUI({ url: "/doc" }));
.
The error presented during deno check
is:
This is the imports
field in my deno.json
:
The Swagger UI example is taken directly from Hono's docs.3 replies
how to specify lint rules in deno.json?
hello. how can i specify the deno lint rules inside the
deno.json
file?
if that is not possible, and they can only be passed via the cli, is there some other way to specify multiple of them in a single command? i would prefer not to write 105 flags.18 replies