Results 211 comments of Corey Farrell

Can you test latest jansson? jansson-2.7.0 is about 5 years old, a very large number of fixes have been implemented since then.

This seems like a reasonable documentation improvement to specify a known limitation for Windows. We could advise `json_loadf` with an already open `FILE*` as the method with best compatibility with...

@boneskull you suggested just providing current user-space API in node.js core rather than implementing an event emitter in the process object. A potential issue is that the user-space API has...

To refine what I was suggesting in the meeting maybe we could create a standard but flagged way to do this (TC39 proposal?). For example `import.unload('specifier')` would be unavailable by...

See also https://github.com/nodejs/modules/issues/389 for ES modules team discussion on this. FYI the current version of eslint supports loading `.eslintrc.cjs` by default, many other tools have taken similar steps. nyc supports...

Additionally see https://github.com/davidtheclark/cosmiconfig/issues/224 as this is likely to cover many tools.

I know this is a can of worms but the ability to have an async exit handler would be fantastic. Currently it is only possible to run synchronous functions in...

> If the exit event handler adds more asyncness to the loop, and then wants node to exit when the "just added" asyncness completes, and to ignore the "already present"...

I've found a way to eliminate use of the `source-map` module from the call path of nyc's `signal-exit` callback so I can live without the ability to run async code...

If a signal which results in termination can safely be hooked then I want it to execute my terminate hook. signal-exit does capture a larger list of signals (https://github.com/tapjs/signal-exit/blob/master/signals.js) compared...