Deno.open() question
Deno.open()?Manually edit existing KV table
Looking to deploy Deno Fresh on VPS using port 443
serve() and not serveTls(). The problem is I cannot expose on 443 since I can't provide certificate and key as start options. Any advice? Should I write a custom start function?
My second question is about continuous deployment: I have setup a gitlab runner on my VPS that handles the process of running on each new commit, but unlike NPM, the deno runtime is "listening" and the pipeline stays in "running" state. Is there any solution to this?...Trying to use Deno.serve() for an https static hosting
"https://esm.sh/mercadopago@1.5.15" Is not workin on deploy
Simulating physics collisions across isolates
Deno showing node globalThis error
error: Uncaught ReferenceError: __DENO_NODE_GLOBAL_THIS_0_43_0__ is not defined
at file:///home/ren/coding/frontend/packit/node_modules/@reejs/imports/env.js:1:18
error: Uncaught ReferenceError: __DENO_NODE_GLOBAL_THIS_0_43_0__ is not defined
at file:///home/ren/coding/frontend/packit/node_modules/@reejs/imports/env.js:1:18
How to read Chunked request body?
for await? It seems to only read up to the point where the reader is empty and then stop. Since some chunks might only show up after some delay, I need it to read until 'zero-length chunk' is sent, meaning the chunked body is over.Deno Fresh (Saaskit base) - Impossible to debug error
Possible to deploy the chat example to deno deploy?
`dnt` incompatible with `addEventListener`?
dnt with no special configuration as far as I know, why doesn't this just work? Some Node.js shim missing?
```ts
src/deps/deno.land/std@0.189.0/log/handlers.ts:153:5 - error TS2304: Cannot find name 'addEventListener'.
...Saaskit 0.2.0 - URLPattern error
deno task start this error pops up (image)
How can i fix this?...
Running `deno cache` fails often with internal server errors when importing
Allow-net not applying to npm: imports ?
How many Web Platform tests should deno be passing?
Deno Deploy with Cloudflare Proxy
Deno event loop and gui application
gtk-rs and deno_runtime. I already have initial rendering of components but i am having trouble understanding how to setup event loop for gui application. Currently i am using tokio's new_current_thread and block_on on deno's execute_main_module but this way setTimeouts don't seem to be executed which I suspect is because there is no event loop. execute_main_module seems to already call run_event_loop but should i just call it in loop or is there a proper way to do it using tokio? and how does event_loop_middleware fit into all this?The other slightly related question is how do i schedule updates from the button clicks if the click listener closure is setup in the
#[op(v8)]?
thanks for your help...Simple type narrowing/type guard/assertion (?)
any and without external deps?
```ts
export function isFooBarBaz(
value: unknown,...