type checking `.js` files using `d.ts` files
d.ts files?
```js
// add.js
/// <reference types="./add.d.ts" />
const add = (a) => a + 1...Which standard lib do I use?
cannot execute: required file not found
curl -fsSL https://deno.land/install.sh | sh
curl -fsSL https://deno.land/install.sh | sh
how to check if a promise has been resolved
Debug deno deploy failures ISOLATE_INTERNAL_FAILURE
Data sync input between parent and children
how to get WebSocketStream's current state?
Does preact useSignal() values need to be cleared for memory leak?
if (mounted.current) {...} test to do something with reactive variables like states if I'm setting/using it after a Promise.
If I use useSignal() from Preact, do I still have to check for if (mounted.current) {...} ?...Are there any up-to-date library for date and time in Deno?
moment and date-fns firstly. After that I search for them and found out that they aren't updated at least three years. I just wonder about theirs security and trustfulness.
Should I install one of them from npm because Deno is compatible with npm packages?
Thanks...Importing module is "not found" even though it obviously exists.
fresh.gen.ts file.
```sh
error: Uncaught (in promise) TypeError: not found
const manifest = (await import(toFileUrl(join(dir, "fresh.gen.ts")).href))...How to properly publish a JSR package with browser compatibility?
Issue with Deno (Oak?)
[uncaught application error]: Http - error writing a body to connection: received corrupt message of type InvalidContentType: received corrupt message of type InvalidContentType
at async HttpConn.nextRequest (ext:deno_http/01_http.js:114:21)
at async serve (https://deno.land/x/oak@v12.6.1/http_server_native.ts:112:34)
[uncaught application error]: Http - error writing a body to connection: received corrupt message of type InvalidContentType: received corrupt message of type InvalidContentType
at async HttpConn.nextRequest (ext:deno_http/01_http.js:114:21)
at async serve (https://deno.land/x/oak@v12.6.1/http_server_native.ts:112:34)
Custom body
Deno.serve: Is it possible to flush a streaming response?
How to mock modules like you can with jest?
jest.mock at the start of the test file. How can I do this in Deno? I have a module which calls a function from another module:
```ts
import {foo} from "foo";
export function bar(a: number): number {...Should I be using memo() in Fresh (/components/ folder)?
How to use new FormData constructor in Deno server, I want to use it for my supabase edge function.
const formData = require(form-data)
const formData = require(form-data)
const formData = new FormData()
const formData = new FormData()
How to import qstash into deno edge function?
Deno Fresh: client side check dev or production
Deno is not defined