Yoshiya Hinosawa

Results 643 comments of Yoshiya Hinosawa

> To write assertEquals for every single leaf property of the objects in concern, which is catastrophically painful. I’d recommend writing a serializer for your object first, then comparing the...

> ``` > assertEquals(0, 0, { converter }) // Promise > ``` What does converter do? Is it called for each node of object, or called only for the entire...

Generally sounds good to me. But I'm a bit concerned about that `deno init --serve` output will be broken for exsting Deno versions. @lowlighter > maybe route() could support an...

Can you provide some real-world example (cli/library/whatever) in which this type of output is used? Also does this type of abstraction have prior example?

Maybe something like `ServerSentEventParseStream` in `@std/http`?

LogTape seems relatively popular to me https://github.com/dahlia/logtape It officially supports Deno, and is available from JSR https://jsr.io/@logtape/logtape

> Last time I tried to use pino it was not working. `pino` now seems working to me in Deno (The below worked): ```ts import pino from "npm:pino"; const logger...

Note: We are making OpenTelemery builtin to Deno runtime https://docs.deno.com/runtime/fundamentals/open_telemetry/

Side note: pino's file transport compatibility was fixed in https://github.com/denoland/deno/pull/27378

@cristian-spiescu > I have a project running an older deno. I planned to upgrade it. But if I'll do, std/log won't be there any more. Is it OK if I...