How do I install NPM packages as *development dependencies* in Deno? Is that even possible?
deno add npm:drizzle-orm
, but I also need the following command npm i -D drizzle-kit tsx
to install drizzle-kit
as a dev dependency, how do I achieve this in Deno?...Deno vs Node `Intl.DateTimeFormat().resolvedOptions()` discrepancies
dayjs
as our time lib, and we noticed some issues related to timezone dates. At first I thought it was dayjs
plugins misbehaving or giving problems, but then I used Intl.DateTimeFormat().resolvedOptions()
to verify the detected system TZ and notices a huge discrepancy.
Node is outputting America/Puerto_Rico
which is the correct TZ while deno outputs America/Anchorage
. Is this known issue?...
Support Fix All in VS Code for lint errors?
eslint --fix
on file save with this setting: { "editor.codeActionsOnSave": { "source.fixAll": "explicit" }
.
Deno's VS Code plugin doesn't seem to recognize the "Fix All" command in the command palette.
How do I enable deno lint --fix
on file save?...An existing connection was forcibly closed by the remote host

Deno + Jupyter - a couple of hiccups: jupyter execute and tests
Problem about using Deno docker image
superoak and superdeno completeXhrPromises error.

Deploy -- Reverse proxy getting "close_notify" error

`deno run` that never writes to `DENO_DIR` or `deno.lock`?
deno
1.46.3 binary and uses it to deno run
some app plugins.
The plugins are folders that are included in our app bundle, which contain deno configuration and .ts
files.
Because we need to sign our app bundle, and some plugins are bundled within the app bundle, we run into the issue where the signature will be invalidated due to deno run --cached-only
being able to modify deno.lock
and any already-cached deno-deps
.
We don't want to use --frozen
, because this would return an error instead of an invalid signature. We don't want to compile
because having many copies of deno would make our app much larger in size....Pull/clone with deployctl
Need a little help with deno deploy for a newbie
Protocol Buffers
Error sending request too quick to npm
https://registry.npmjs.org/<package>
and the downloads (https://api.npmjs.org/downloads/point/last-month/<package>
) with Promise.all()
But there is a few errors while fetching.
```
Error: connection error received: not a result of an error...How to compile simple C++ file to use in deno via wasm
Support implicit package imports?
const createApp: typeof import('../../../node_modules/.deno/h3@1.13.0/node_modules/h3')['createApp']
const createApp: typeof import('../../../node_modules/.deno/h3@1.13.0/node_modules/h3')['createApp']
.d.ts
file by Nuxt....Which logger do you use?
Current way to install -g a tool with deno add?
do-thing.js
and it contains import {resolve} from "@std/path"
(this is after running $ deno add jsr:@std/path
), do I have to do anything to install that as a utility?...How do I troubleshoot this error?
deno task start
it, it gives me an error like this:
```
spencer@m1 ~/D/D/blog (main)> deno task start
Task start deno run -A --watch=static/,routes/ dev.ts
Watcher Process started....Have a trouble using github hooks and deno
deno lint --allow-import
it throws this: error: unexpected argument '--allow-import' found
I tried anything, but this just won't work, neither --allow-import
nor -I
, neither in the beggining deno -I lint
nor in the end deno lint -I
Maybe I have something wrongly configured?
```...