Christopher Hiller
Christopher Hiller
Currently, to know when the `Client` class has connected, a user will pass an `onSuccess` callback to the constructor. It would be best if the `Client` class' API was more...
In a nutshell, we need to be able to "unload" an ESM module, which is not supported. Tooling needs this for reloading files (e.g. in a tool's "watch" mode) or...
chmod -R
This came out of a slack discussion, but adding a recursive mode to `fs.chmod` (_a la_ [chmodr](https://npm.im/chmodr) would be super. cc @isaacs @coreyfarrell
We've got some feedback on the recursive `rmdir` API; see https://github.com/nodejs/node/issues/34278 Given that the `recursive` option is still experimental, we can still break it, if necessary. Note that the `recursive`...
I'm curious if anyone thinks adding [glob](https://npm.im/glob) support to core would be a good idea? Globs (globspecs? what's the right term?) are natively supported in POSIX (?) shells, which means...
Hi, I found this tutorial while looking for `nom` tutorials. And Rust tutorials. This one seems to be the most up-to-date and well-written, and is essentially my first try at...
We're getting some coverage failures where, ideally, we shouldn't be. if we're adding `.mdx` files, that should not affect code coverage. if we're editing `.yaml`, that should not affect code...
It's not working atm because it needs git username/pass. This is no good anyway. Find another action. fix.
We (can) do typechecking of JS sources via `tsc`. Maybe it'd be better to do this from ESLint? What are the advantages/disadvantages? See https://www.npmjs.com/package/@typescript-eslint/eslint-plugin
There's some rudimentary validation of the config format. There's static validation via types, and validation of root properties, but there's no validation of the _contents_ of those root properties. This...