tooling
tooling copied to clipboard
Advancing Node.js as a framework for writing great tools
It would (imo) be valid to say that SemVer a fundamental and essential part of the ecosystem. All modules rely on it, Node.js itself uses it for versioning, and it's...
It would be nice to have a way to pull in metadata from package.json in the context of a library, e.g., what is my version #?
I've seen various issues with understanding the `package.json#exports,imports` fields. 1. Lack of linting (E.G. https://github.com/microsoft/TypeScript/issues/46861 ) 2. Lack of convention. No official recommendations of ordering of conditions in typical application/framework....
I'm wondering if there is anybody in this team that could look at the persistent failures we are seeing on Windows? It's now the most common failure we see in...
We've started incorporating some third-party packages like mkdirp and rimraf into Node core. We should figure out a way to flag this to users if they're using the package in...
## Some Background Part of the motivation of building `NODE_V8_COVERAGE` into core, was that it made it significantly easier to capture exit behavior. Prior to this, tools like [nyc](https://www.npmjs.com/package/nyc) used...
Tracking discussion here: https://github.com/nodejs/node/issues/34992
[Rendered](https://github.com/nodejs/tooling/blob/771ec8f7fc70b86a30e76dff97fc5567b73aaef1/initiatives/argument-parsing.md) /cc @joesepi
The hackmd integration is coming soon: https://github.com/pkgjs/meet/pull/30 We should probably wait to land this until then, but figured I would get it started.
## What does this mean? (Background) Foreign Function Interfaces are ways to call into native (i.e. C/C++/Rust/etc.) code from a higher level language, in our case JavaScript. There are many...