Pass string from TS to dll and return the passed string. (Like echo)
deno-deploy limits on file storage?
Reading a ReadabeStream without consuming it?
PhpStorm not resolving local import with import_map.json

how to cancel test watch
deno test -A --watch tools/json_tools/examples/*.ts and ctrl+c does not seems to work.
had to force-quit terminal to stop it....Sentry DenoOsUptime is not a function issue
npm:@sentry/node@7.49.0 and the following script to test the integration
```TypeScript
// sentry import and init here
async function testEvent() {
try {...Property 'openKv' does not exist on type 'typeof Deno'. VSCode
Import from direct URL works fine, but NOT via deps.ts
Small Deno Script to upload to my server not working due to not being able to be run on CentOS
[root@atl-sql jasmeowsystems-uploader]# /root/.deno/bin/deno run -A index.js
/root/.deno/bin/deno: /lib64/libc.so.6: version `GLIBC_2.18' not found (required by /root/.deno/bin/deno)
[root@atl-sql jasmeowsystems-uploader]# /root/.deno/bin/deno run -A index.js
/root/.deno/bin/deno: /lib64/libc.so.6: version `GLIBC_2.18' not found (required by /root/.deno/bin/deno)
Empty output in Deno.Command
git log —grep='.' from Deno. However, it always returns an empty output.
If I delete the grep option it returns it fine. Running the same command from the CLI returns all commits.
It’s weird because other “similarly looking options” seem to work fine for example —format....How to display data from a Handler on every page?
How do people bundle their Deno code for web?
bundle command to bundle my code for web. Is there a better alternative for bundling + type-checking folks are using? I can't find anything that looks robust and Deno-ish and ended up with a big hacky script (below). I love esbuild but it doesn't support type-checking and esbuild_deno_loader is still maturing.
```
import * as esbuild from 'https://deno.land/x/esbuild@v0.17.11/mod.js'
import { denoPlugin } from 'https://deno.land/x/esbuild_deno_loader@0.6.0/mod.ts'...Preventing `Deno.stdin` reads from blocking
Deno.stdin input, there is a loop that reads and parses the returned bytes.
My issue is that, in case of an uncaught error/rejection, the process hangs until stdin has something to return, and once it does, only then does it exit the process and log the error information.
Is there a way to make this read() non-blocking in that sense?
If the user does not input anything, but an error occurs, the process should exit immediately and not have to wait for a keypress.
The code below can be run from a file for demonstration....Can I pre-cache dependencies that I specify using npm:?
esm.sh URLs, but just hit some CDN errors so that made me switch to npm: in hopes of it being more reliable. But afaict deno vendor doesn't vendor npm dependencies? What's the right combination of things to do to deploy reliably?JSON Schema Core, $dynamicAnchor, and $vocabulary
"$ref": "meta/core" would refer to "https://json-schema.org/draft/2020-12/vocab/core" – any ideas? I feel like I'm missing something fundamental knowledge on the JSON Schema Core spec here...
```json...Test case is leaking resources
``json
error: AssertionError: Test case is leaking 2 resources:
- A timer (rid 770) was started before the test started, but was fired/cleared during the test. Do not close resources in a test that were not created during that test.
- A timer (rid 773) was started during the test, but not fired/cleared during the test. Clear the timer by calling clearInterval or clearTimeout`....[have workaround] "deno" and "deno repl" aren't producing output
deno run hello.js and deno help.
deno --verbose isn't a thing....Serve Fresh over HTTPS locally