Error when using readline.question()
Do we need lockfiles if all our dependencies are hosted on https://deno.land/x?
jsx in deno
'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
onboard is infinite
Deno mobile app?
What is the best way to count values with Deno.Kv?
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?
['users', 1], ['users', 2],
will kv.delete(['users']) delete both of those entries?...How do I send a simple text file to the printer?
Active Handles and Requests
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
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?
Safety measures (statically, not runtime) for libraries that require environment variables?
Deno debugging failure: Argument 0 must be a buffer source
chrome://inspect directly.
First, the error message:...VSCode "quick fix" for missing import doesn't use import map

Testing my Oak `Application` end-to-end
const app = new Application() configuration, making sure e.g. that all the routes are being found, etc.
I've only been able to find createMockContext, etc., but I can't figure out how to make a "mock server request" that would be accepted by Application.handle basically?...Adding methods to Oak's Context?
ctx.customMethod(), could someone point me in the right direction? I can only really find how to customize the State, but that would only let me do ctx.state.customMethod() – is that how you're supposed to do it instead of what I had in mind?Clear cache modules
deno cache --reload=npm: main.ts-
deno cache --reload main.ts ...How does importing `node:https` work?