Justin Chase

Results 184 comments of Justin Chase

A couple questions: 1. Suppose I have some native modules, perhaps with threading, will they be stopped and freed appropriately when the core is shutdown too? 2. Can I get...

Related to @lucacasonato 's comment and the below output, here is a recommendation... #### original ``` This program will exit with code 120 error: Uncaught Error: Process exited with code:...

> What's your use case for the API? I'm just writing tests for some CLI code, and in some places `Deno.exit(1)` is called, so just trying to test that functionality...

Hmm, that's a little confusing but I guess so long as its deterministic, so long as that error is one that I can catch and detect in the test then...

Does `deno_core` not have a typescript module? https://deno.land/x/deno_core Or, how would one use `deno_core.load`? I am looking for something such as: ```ts const specifier = "http://example.foo" const graph = await...

What I'm trying to do is to essentially import a file which is not typescript or javascript and transpile it on the fly. It seems like that ModuleLoader.load function could...

When deno deploy goes idle and it shuts down the server, is it sending a kill signal to the deno process?

Is Oak producing background threads? I suspect the listening socket is being hard closed, probably before the server is shutdown, maybe the problem is that a sigint _isn't_ being sent...

Ok, I forgot about that. So we're saying you can add a `app.addEventListener("error", handler)` and then possibly filter out these errors?

This is a great idea in general, I'd be excited to use it. I will say, without having a clear solution in my mind, it would be great if the...