Using Deno's Jupyter Kernel, can I profile my code? If possible, line by line profiling?
Getting svelte-language-server/typescript-language-server to recognise deno workspace packages?
Stubbing @std/x
stub()
method with @std/x
libraries.
```typescript
import * as stdYaml from 'jsr:@std/yaml';...Read file as text in JSR package (easy with NPM, not Deno)
import.meta.url
inside the script that needs to read the text file resolves to a https://jsr.io/…
URL, whereas the text file is presumably ready to be read on the user's machine given the package has been installed. How do I read...How to debug multiple worker modules in vs code
Clean Integration of a Multi-file Deno Project as a Dependency in another Deno Project
How to use Deno KV when deploying Next.js to Deno Deploy?
Deno.openKv()
won't work -> Deno is not found.
- import { openKv } from "@deno/kv"
+ await openKv("URL")
won't work either -> The Next.js app just won't build with this dependency.
...Deno and Eta browser-side?
how do I access post data in a deno http server?
DB Connection slow with mongodb

Cannot copy files from `AppData/Local/` despite --allow-all flag
AppData/Local/
using @std/fs in Deno, the operation fails with a PermissionDenied (os error 5). This occurs even when running Deno with the --allow-all flag.
Code Sample
```TS...Deno imports failing to load
jsr:@std/encoding@^1.0.7
. Every time I try to use the package I get the error seen below. This happens with most deno packages that i try to use, where it says some file is missing. It doesn't fail when using npm:@oslojs/encoding@^1.1.0
or npm:@deno/vite-plugin@^1.0.4
. I guess it's because they're npm and not jsr or deno. It also happens for packages such as https://deno.land/x/jose@v5.9.6/index.ts
.
I've tried running deno clean
then restart my pc and create a new project. It still happens there.
A friend of mine does not have the problem, when running the exact same project as me....databaseBindingMismatch when trying to promote a deployment to production
{"name":"ApiError","status":400,"code":"databaseBindingMismatch","traceId":"****","retryAfterSec":null,"message":"The requested deployment is binded to a different set of databases than the current production deployment."}
{"name":"ApiError","status":400,"code":"databaseBindingMismatch","traceId":"****","retryAfterSec":null,"message":"The requested deployment is binded to a different set of databases than the current production deployment."}

Deno Kv: "Database is locked" on enqueue
1
gathers info and posts it to service 2
via HTTP post, where 2
immediately offloads the request to a Deno.kv
queue and returns. There are a lot of posts being made, and once a couple thousand events are queued I'm noticing that inconsistently service 2
will throw the following error:
```
[uncaught application error]: TypeError - database is locked
request: {...Importing pdfjs?
globalThis woes with VSCode Deno extensions LSP

I run "deno -A npm:drizzle-kit generate", deno hits me with "Cannot find module 'drizzle-kit'"
deno -A npm:drizzle-kit generate
command, instead deno throws an error
Please, can anyone help me? I've been battling this since yesterday, claude couldn't even provide a solution, here's the error deno give me:
`Reading config file "C:\Users\me\Desktop\backend\drizzle-app\drizzle.config.ts"...VSCode only TypeScript Errors, nothing from Deno LSP
>Deno: Initialize Workspace Configuration
and I have a .vscode/settings.json
, with this content:
```json...deno task setup can't run on Windows 11.