Setting up Deno 2.0 with Fresh and TypeORM
Is there a way to use tsserver instead of deno lsp in VSCode?
Tools to shrink the output of deno compile?
deno compiled executable? I care primarily about Windows, but am interested in hearing about Linux options, too.Deno add from different sources (like JSR) doesn't works?
deno add jsr:@oak/oak jsr:@tajpouria/cors and deno search it from npm and not jsr, it gives me the error error: npm package '@jsr/oak__oak' does not exist.
why?...deno compile next.js as standalone executable
vite + react
deno add jsr:@oak/oak jsr:@tajpouria/cors returns
Add jsr:@oak/oak@17.1.0
Add jsr:@tajpouria/cors@1.2.1
error: npm package '@jsr/oak__oak' does not exist....Deno Vscode type checking randomly gets wrong types for discord.js EmbedBuilder
`deno add` does not support the --cert option and does not use `$DENO_CERT`
.npmrc, and deno add runs into cert problems.
When I add my organizations custom cert file to other deno commands, it works. However, deno add does not have this option, and seems to not use $DENO_CERT.
How can I solve this problem? Help is appreciated....As a JS beginner, should I learn Node.js first or go straight to Deno 2?
deno and @types/react
@types/... declaration, I have to use the
// @deno-types="@types/..." directive.
this is fine except when react doesn't ship with types and I have to now include this directive in many many files and it also does not auto complete the import so I manually have to type the import in new files.
...deno install
deno install
deno install
lookupService is not a function
node-opcua npm package. but when I import it, it throws an error.
```
error: Uncaught (in promise) TypeError: dns_1.default.lookupService is not a function
at GetAddrInfoReqWrap.callback (file:///home/aw/.cache/deno/npm/registry.npmjs.org/node-opcua-hostname/2.128.0/dist/hostname.js:29:23)...Error connecting to https on Windows Server 2012 R2
Deno less verbose in wsl?
deno task start the application takes forever to run, the watcher doesn't catch changes, and there are no intermittent or error outputs to the terminal.
However when i run deno in the PS terminal it is very responsive, verbose, and the watcher works properly.
The wsl version didn't use to be this unresponsive. Does installing the windows (PS) version somehow interfere with the wsl install or is there maybe another issue?...Errors in boilerplate code?
deno run --allow-read --allow-write --allow-env npm:create-vite-extra@latest I see the following errors. (It's important to note that on another computer, there are no errors whatsoever.)
Why might I be getting these errors?
...Performance concerns for docker engine hosting company
Memory leak when conditionally stubbing fetch
@std/testing/mock where I want to stub fetch for only a specific URL (an OAuth token exchange endpoint) receiving a mocked response in this case. For all other fetches, I want the fetch to behave normally. Everything seems to be functional however the test is failing due to fetchCancelHandles not being cleared up but I really can't see how this could happen as all requests made have their bodies consumed.
I wondered if any smarter people have experienced this before or have any answers as to why this specific behaviour is arising.
Error: ```...
Why isn't the API_PORT variable being loaded? Is there something I'm missing?
React + Vite (without `node_modules`)
node_modules dir. I thought this might be doable thanks to the new deno-vite-plugin from the Deno team. Unfortunately I encounter an issue upon running the served/built application (see issue here). Wondering if anyone has ideas on how to resolve this issue? If so, Deno+Vite+React projects will be so much cleaner!