npm:@triton-one/yellowstone-grpc4: "This expression is not constructable"
Firebase: broken pipe when using npm
Type sharing between Deno server and Expo app not working
JSR Publish error

How to inspect Deno's rare uncaught rejections?
Confusing linting
deno-ts: This member must have an 'override' modifier because it overrides a member in the base class 'the class name'
Then I add the override:
deno-ts: This member cannot have an 'override' modifier because it's containing class 'the class name' does not extend another class
...Trying to deploy fresh project to deno, and all the JS has 500 errors
How to build/cache deno program ahead of time
deno cache
does, as its help string says "Download and compile a module with all of its static dependencies and save them in the local cache, without running any code", but its docs link (https://docs.deno.com/go/cache) redirects to the docs for deno install
, and running deno cache
on my src/main.ts
and src/worker.ts
doesn't have any effect on the problem I'm having....how to install and use framer motion in fresh js
Deno `fetch()` SSRF prevention: Best practices for user-supplied URLs?
fetch()
API in Deno, especially when the input URL for fetch()
needs to be arbitrarily received from users?
I understand that using a whitelist for allowed hosts is a good starting point, but I'm looking for a more comprehensive approach. Are there any specific Deno APIs or techniques to effectively block internal IP addresses, limit URL schemes, prevent DNS rebinding attacks, or handle redirects securely? Any example code snippets would be greatly appreciated!...Deno in Jupyter Notebook: Run cells with --check
--check
enabled, like you would with a file deno run --check file.ts
. Currently, running cells in Jupyter notebook with the Deno kernel will not check types and will succeed even if there are type errors, just how the default behaviour of deno run
is to not check types. I would like cells with type errors to fail when I run them. Is there any way to do this? Thanks!Deno permissions and security
Deno.connect failed to read all bytes when connected to smtp #help
is it possible to use deno std libraries that are "browser compatible" via npm?
Unable to run Deno plugin within Webstorm

Deno env vars
deno run --env-file=.env db:migrate:latest
deno run --env-file=.env db:migrate:latest
Is there a way to handle permission prompts from a worker?
net
property on the deno.permissions
worker option says if set to string[], the net permission will be requested with the specified host strings with the format "<host>[:<port>]."
, and hooking that seems like the easiest way to do this kind of permission filtering logic, but I can't figure out how to.high memory usage using compiled binary in docker
`ts-match` unable to infer types properly
ts-match
library to do some pattern matching on an object, and it seems unable to infer most types properly. Perhaps someone has experience with it.
My code is https://pastie.io/htxtti.ts and I'm seeing errors left, right, and center.
* 1: Type 'unknown' is not assignable to type '[typeString: string | undefined, skipImport: boolean]'
* 9: Object literal may only specify known properties, and 'enum' does not exist in type 'Matcher<never, unknown, any, any, unknown>'
...Unable to deploy Next.js following official guide