ehmicky

Results 372 comments of ehmicky

I've opened [an issue with Node.js](https://github.com/nodejs/node/issues/27490) to make `childProcess.killed` `true` even when the child process was killed through `process.kill()` or `kill` in the terminal (as opposed to `childProcess.kill()`).

Yes I think @bnoordhuis fix for it (checking `signal` on `exit`) is the correct one. However I still think that providing this as part of Node.js might be a good...

Hi again, thanks a lot for reaching out! A third option could be separating versions with `,` instead of spaces: ` nve 12,default,10 node --version`. It might also help users...

I have just comma separation with [`nve@13`](https://github.com/ehmicky/nve/releases/tag/13.0.0). I have also added a new alias `global` which should give you the global Node.js version regardless of the current directory. If you...

> I was assuming that every part of the comma separated version range would be implicitely considered as an alias that should be tried to be resolved. That is correct....

> When I proposed to add nvm alias support to normalize-node-version (cf ehmicky/normalize-node-version#3), that was only so it could be used in nve. > Also this issue, to which command...

I am not quite convinced that nvm user-defined aliases are useful. I think they just add complexity. Do you have an example where they could be useful, as opposed to...

This was discussed in our guild sync and @lukasholzer decided to start moving on this item.

After discussing with @lukasholzer and @eduardoboucas, we decided on the following plan: - [ ] 1. Adding `.ts` file extensions to all files and `import/export`. Without types yet, nor additional...

When it comes to mimicking `require.cache` with pure ES modules, I believe dynamic imports can be used with a cache busting query parameter. With CommonJS: ```js require('/path/to/example.js') // Cache not...