How to get complete Deno RAM usage?
Deno.memoryUsage().rss or should it be rss+heapUsed+external?mongodb calls on DB's rather than collections
find on a mongoclient rather than a collection
```
clnt: MongoClient,
...can i bypass strict mode?
Deno Run , it complains
error: Uncaught TypeError: 'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functions or the arguments objects for calls to them
const answer = o[s];
...piping for async sub process
Deno NPM VSCode Intellisense
npm:. I tried using an import map but that didn't work either. If there's a code editor or an IDE that currently supports this feature I would love to know.Need help making fresh, rutt and preact base path aware
<img src="/logo.svg" ... from the jsx file should be 'compiled' to <img src="/my_base_path/logo.svg" .... Or do we need to do this ourselves by adding a ${BASE_PATH} before all links?
A mono-repo for this mess: https://github.com/wille-io/deno-fresh-rutt-baseurl...How do I render react?

How do I wait for the long running shell script to finish?
await returns immediately.
```
const D = await Deno.run({cmd: ["sh", "long-running-script"]});
console.log(D)...Resolving 'dynamically imported module evaluation pending, but no pending ops'
error: Dynamically imported module evaluation is still pending but there are no pending ops. This situation is often caused by unresolved promises.
Pending dynamic modules:
- file:///home/user/Desktop/js/denolasvegas/commands/main/CATEGORY.ts
error: Dynamically imported module evaluation is still pending but there are no pending ops. This situation is often caused by unresolved promises.
Pending dynamic modules:
- file:///home/user/Desktop/js/denolasvegas/commands/main/CATEGORY.ts
http serve and serveTls using async iterator cannot serve multiple domains
is there a way to make deno check produce json files?
deno lint has a --json flag.
is there a way to json output for
deno check...How to test if a file was created?
Function Location
FunctionLocation which is listed in double square brackets...
Can I disable type checking for specific files or folders?
Deno bundle duplicating variables
deno bundle run.ts standalone-starter.js
However, the generated standalone-starter.js contains duplicated variable declaration, resulting in error: Uncaught SyntaxError: Identifier 'mod' has already been declared while trying to use deno run standalone-starter.js....Environment Variables & Args for Deno Testing in Visual Code Studio
deno.json is
...Deno BDD Testing in Visual Code Studio
describe and it rather than Deno.test.
I get the lense to run tests with with Deno.test is there any way to get it for describe and it...Simple test, lots of type errors