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
How Node.js SQLite works on Deno?
How to create private packages in deno and not fall into ERR_UNSUPPORTED_NODE_MODULES_TYPE_STRIPPING
How to use cron?
Running vite and a deno server in workspaces
Instancing Rust Structs in JS and maintaining a list of them in Rust
deno_core
that would allow me to create Rust Struct instances via JavaScript, but maintain those instances in Rust. What I mean is this:
I have a Rust Struct called Rect that I use as a Resource in deno.
For the sake of brevity I will reduce its fields in this example to two coordinates, top and left:...Lume CMS