crowlKats
Is there a function which can print a structure in deno/typscript similar to print_r in php ?
just console.log should print its properties and methods. alternatively you can try console.logging the result of
Deno.inspect
, maybe with some of the options enabled2 replies
Jetbrains IDEA imports incompatible
that one is just the general tracker, not the specific issue though, but i guess its https://youtrack.jetbrains.com/issue/WEB-68473/Deno-path-completion-doesnt-work
11 replies
Can I transpile TypeScript Code to JavaScript Code with Deno like Bun
no problem, and we do adhere to the rust code of conduct, so dont worry
I know some other team members might have banned that person instantly, but i am of the opinion people should be given a second chance, even if very unlikely to be effective
14 replies
Can I transpile TypeScript Code to JavaScript Code with Deno like Bun
yes, apologies about that, tried to reach out directly via DMs but since you have DMs closed, I wasnt able to.
A stern one-time warning was given, and if anything like that happens again, let me know instantly and I will take care of it.
14 replies
Can I transpile TypeScript Code to JavaScript Code with Deno like Bun
esbuild is a more expansive and fleshed out solution than
deno bundle
. Also deno bundle
gave the impression to people that they could bundle for the web, which is not true, as it would just bundle all the files in module graph into a single file to be consumed, as mainly for distributive purpouses.14 replies
Seeking help migrating from Deno.run to Deno.Command with spawn
p.stdout
is a ReadableStream. your options are either using p.output()
instead of p.status
, or use streaming capabilities, but since you seem to want to collect the output to a single string, probably the first solution is the best for you4 replies