Tomofumi Chiba

Results 9 comments of Tomofumi Chiba

Could you try removing "--cached-only" option in the Procfile? https://github.com/tiny-devs/tiny-dungeon-online/blob/b55a024d9958b976b8e483019bc21531fd88ea26/Procfile

I have debugged it and found that `process.argv0` is handled differently. ``` $ node > process.argv0 'node' $ deno > import process from "node:process" undefined > process.argv0 undefined $ bash...

Perhaps support for `aes-256-cbc`, `aes-192-cbc` will also be required. https://github.com/denoland/deno/blob/7561f6eceacc46c6f4f5f66cf03e627821b64f02/ext/node/ops/crypto/cipher.rs#L26 I bypassed the `process.argv0` issue and tested it. ``` error: Uncaught (in promise) TypeError: Unknown cipher at new Decipheriv (ext:deno_node/internal/crypto/cipher.ts:140:13)...

@bartlomieju @kt3k Thank you for fixing. I did a test with a canary release. ``` $ deno task start Task start deno run --allow-sys --allow-env --allow-net --reload main.ts error: Uncaught...

@bartlomieju I have created the Issue. #20934

I have debugged this issue. I understood that it depends on the following Issue. #18455 > - [ ] `crypto.Decipheriv.prototype.setAutoPadding` #21804

``` $ deno --version deno 1.40.3 (release, x86_64-unknown-linux-gnu) v8 12.1.285.6 typescript 5.3.3 $ deno task start Task start deno run --allow-sys --allow-env --allow-net main.js error: Uncaught (in promise) Error: Not...

@salva-dev I am hoping that once the following issue, PR, is resolved, this issue will also be resolved. #21804, #22228 I confirm that the following comment workaround works well. https://github.com/denoland/deno/issues/20924#issuecomment-1827671623...

As a workaround, the Deno fetch API can use proxy. The `--unstable` option is required. https://deno.land/[email protected]?unstable=&s=Deno.CreateHttpClientOptions#prop_proxy