begoon
begoon
DDeno
Created by begoon on 7/26/2024 in #help
Can non-TS artefacts (images, MD files, etc.) be added to the "deno build" bundle?
I have an app which reads artefacts off the disk. When I run it with Deno and Deno Deploy normally — everything works fine. However, the complied by “deno compile” binary fails trying to open files from the file system in a location, where Deno executor unzips and runs that compiled file.
6 replies
DDeno
Created by begoon on 7/26/2024 in #help
Can non-TS artefacts (images, MD files, etc.) be added to the "deno build" bundle?
ah, I mistyped: I meant “deno compile…”.
6 replies
DDeno
Created by begoon on 7/1/2024 in #help
deno cache
I have a weird situation when two projects have the INDENTICAL deno.json with import mappings. One project uses the cache without internet, but another tries to resolve it and fails without connectivity.
4 replies
DDeno
Created by begoon on 6/24/2024 in #help
thread 'tokio-runtime-worker' has overflowed its stack
I have bisected the releases and found that the last working release for me is 1.43.5. In 1.43.6, the application starts crashing because of the error above.
6 replies
DDeno
Created by begoon on 6/24/2024 in #help
thread 'tokio-runtime-worker' has overflowed its stack
6 replies
DDeno
Created by begoon on 6/24/2024 in #help
thread 'tokio-runtime-worker' has overflowed its stack
I have just realised that in the dockerfile, there is a version of deno which I didn't upgrade. The application DOES work with that version: deno --version deno 1.43.1 (release, aarch64-apple-darwin) v8 12.4.254.12 typescript 5.4.3 I have downgraded my main CLI deno to 1.43.1 and... the crash is gone. Something had been broken between 1.43.1 and 1.44.4.
6 replies
DDeno
Created by begoon on 4/12/2024 in #help
@vercel/blob put function hangs in Deno
Firstly I raised an issue in the vercel/blob repo assuming it is their issue, and posted a message here “just in case”.
5 replies
DDeno
Created by begoon on 4/12/2024 in #help
@vercel/blob put function hangs in Deno
5 replies
DDeno
Created by begoon on 8/31/2023 in #help
Outgoing connection over TLS (port 465) from the deno deployment is failing
I'm tempted to just go with Vercel for the whole app. Vercel is great. But I would like to stick to Deno Deploy for a while because Deno Deploy is also great 🙂
10 replies
DDeno
Created by begoon on 8/31/2023 in #help
Outgoing connection over TLS (port 465) from the deno deployment is failing
So far, I removed the email-sending part from my Deno Deploy deployment and instead created an endpoint at Vercel, which allows sending emails. That endpoint is in SvelteKit/TS, facilitating the "nodemailer" library. Now, my application at Deno Deploy calls that endpoint to send email instead of doing directly.
10 replies
DDeno
Created by begoon on 8/31/2023 in #help
Outgoing connection over TLS (port 465) from the deno deployment is failing
@suchislife801 I use 1.6.0. The code when running from my local development computer works normally. I even discovered the issue only when I deployed. In theory, the edge runtime, which Deno Deploy hosting implements, should not allow socket connectivity at all. Only fetch-based network calls are allowed in edge functions. But in this case the code should fail with a missing function error or something. But here the error seems to come from the OS network layer, when the socket connection had in fact been attempted.
10 replies