Reclaim an already registered module?
Is it possible to reclaim an already registered third party module? For example if the module that is already registered doesn’t get any updates or is deprecated?
Deno.readDir on current script even if used like an http package.
Hello !! I would like to do Deno.readDir and readFiles on files relative to the script that execute Deno.readDir even if the script lives in deno.land/x. How should I do it ? Any help is welcomed thank you.
Top level awaits for `import()`
How come to top-level awaits for
import() not work? I found an issue on GitHub https://github.com/denoland/deno/issues/7649, but it doesn't seem like it was fixedRemove sink from stream
Is it at all possible to "undo" adding a sink on a stream? I am trying to make it so that once the writable stream fulfills some condition, it should stop reading from the readable.
```ts
someProcess.stderr.pipeTo(
new WritableStream({...
HTTPS w/ client certificate – works in Node.js, not in Deno
I am making an HTTPS call with a client certificate. It works great in Node.js, but when I try to do the equivalent in Deno, I get a TLS handshake error. Any ideas on what I'm doing wrong?
Using encrypted private keys with Deno
So it seems to me that Deno doesn't provide any helpers for making HTTPS requests with encrypted private keys. (This is readily available in Node.js!)
Is it possible at all make HTTPS requests with encrypted private keys in Deno? Not exactly sure how all of TLS works, and on what level it would need to be implemented....
Error when using readline.question()
I get this error with the following code
```ts
import process from 'node:process'
import readline from 'node:readline'
...
Do we need lockfiles if all our dependencies are hosted on https://deno.land/x?
When I make a new Deno config, a lockfile is generated automatically and I don't understand why. I'm only using deno.land dependencies, which I think are immutable, and no NPM dependencies. Lockfiles are unwanted noise in my Git history. Is there any benefit to having it?
jsx in deno
Hi, I have simple code that takes use of jsx. Based on deno docs, the jsx support should be ootb. Is there anything I need to add?
The error I get:
'React' refers to a UMD global, but the current file is a module. Consider adding an import instead.deno-ts(2686) (property) JSX.IntrinsicElements.img: React.DetailedHTMLProps<React.ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>...

Express pt2 tutorial links to itself
At the very start of the tutorial, it mentions that part 1 got up and running, but the link points to the very same page you are currently at
https://deno.com/blog/build-api-express-typescript-pt2...
onboard is infinite
Seems like the onboarding process is broken and won't stop repeating itself
You need to be a new member to experience it...
Deno mobile app?
Anyone has made a mobile app using deno? I was planning to use Fresh and https://capacitorjs.com/ to wrap my webapp as mobile app any ideas?
What is the best way to count values with Deno.Kv?
I want to show the total values in the database. It seems that the only way is with
kv.list() and then iterate the values.
Probably this is not very performant if I only want to count the results. I'd like to have something like this:
```js...Does kv delete recursively?
For example, if I have entries with keys:
['users', 1], ['users', 2],
will kv.delete(['users']) delete both of those entries?...How do I send a simple text file to the printer?
Hello. I am looking for an example of how to send a simple text file tot eh printer in Deno. Is this possible?
Active Handles and Requests
I'm running into an issue with the
excel4node NPM library, where after new'ing a Workbook, the program just hangs, like there is an open handle or request. With Node, I could run process._getActiveHandles() and process._getActiveRequests() to see what is active. Is there a way to find active handles and requests with Deno?
```typescript
import excel from 'npm:excel4node@1.8.2'
const workbook = new excel.Workbook()...Oak, `ctx.assert`, and middleware
I thought that
ctx.assert would somehow "carry along" the information about the asserted condition to the next middleware in the chain, but I can't seem to get that to work.
Am I misunderstanding something here? I was thinking if I do something like this, I wouldn't have to to a null check in the last middleware, but I apparently do?
```ts...Checking for circular module dependencies?
Hi, I’m wondering if there is some way to detect whether there are circular dependencies in a set of modules. Ideally, it might look something like this:
```js
let detectCircularDependencies = fileNames => { … }
...