How to use Buffers again? Old node path no longer exists
export * from "https://deno.land/std@0.177.0/node/internal/buffer.mjs";. I updated a project to use the latest std library and I have no idea how to get buffers back.How use namespace on Deno
Restart Deno process on crash
best practice when spawning commands that require sudo?
tcpdump. To get any meaningful data out of tcpdump, I need elevated permissions. To keep this command portable, that means running sudo tcpdump inside my deno program. How can I set up deno permissions to run a specific command executed through sudo? A simple permission of --allow-run=sudo would be dangerous. I could just let the user approve each time, but even then, all they know is that they are approving sudo, there is no other knowledge of what the subcommand is:
``
┌ ⚠️ Deno requests run access to "sudo".
├ Requested by Deno.Command().spawn()` API.
├ Run again with --allow-run to bypass this prompt....Should "exists" function from STD be used as a last resort?
Chaining Tasks and using --watch
How to setup deno for Lunarvim?
Unexpected token 'export' (deno_core)
global is not defined
Using querySelector on Node
Are there any plans to support an equivalent to emitDecoratorMetadata?
Simpler way to read a file relative to current module?
error: BadResource: Bad resource ID
Recent deployment not working?
How do you get the path to a file relative to the module which is referencing it?
const GET_PROGRAM_QUERY = Deno.readFileSync("./GetProgram.gql");
const GET_PROGRAM_QUERY = Deno.readFileSync("./GetProgram.gql");
Investigating memory leak after adding new app dependency
Deno.memoryUsage() and it seems like the leaked memory is all external.
How else can I investigate the issue? Anything else I can add to my typescript to observe this?...
VScode deno lint blew up again after update.
Help debugging command that doesn't exit.
awaiting all the promises I can, but I still get to the end of my main() and deno doesn't exit.
So I've got: ...Why isn't this error caught?
