Leokuma
unable to see documentation on deno.land/x
You can still generate the docs locally
First download the package:
It will be downloaded to a folder called
vendor
Then generate the docs for it:
Docs will be generated in a folder called docs
by default. Open the file docs/index.html
in your browser to navigate through the docs3 replies
Deno needs better memory leaks debugging tools
I have double checked all of my code to find any clue, but nothing found!Have you checked inside your dependencies as well?
I am writing this to know if there are any tools that I can use with Deno to debug this issue?I know that
Deno.test()
is able to detect some leaks.
Is there any plan to develop some more lower-level tools that can allow debugging these kind of anonymous memory leaks?AFAIK, no.
10 replies
Full-stack development based on Deno2?
IDK about projects, but there's this doc: https://docs.deno.com/examples/vue_tutorial/
5 replies
Reliable pattern for cleaning up resources as process exists?
Interesting. Maybe this question is worth opening an issue. I wonder if it would be possible for the Deno runtime itself to automatically cleanup resources declared with
using
. Not sure if that could work, whether Deno would know the order to cleanup each using
5 replies
deno 2.1.5 not running in Azure Container App environment
No worries. I was just wondering if the "problem" was in the Deno runtime itself or in your code. Wondering if the app was just one line - a simple
console.log
, or a Deno.serve()
- it would work or not. The guys are implementing Otel, maybe it has something to do with the problem, IDK6 replies
std JSON serializer/deserializer with Set and Map support
There is some builtin serialization because KV supports Map and Set, but I dont think it's exposed to users: https://docs.deno.com/deploy/kv/manual/key_space/#values
6 replies