Guy Bedford
Guy Bedford
As Node.js has moved to embrace the URL spec over the legacy url API, there is still an API gap for handling relative URLs as discussed in https://github.com/nodejs/node/issues/616. To follow...
I would like to propose that file URLs include separator deduplication in the spec as a rule to match the file system identifiers themselves more closely. The reason for this...
Understood if this is off-topic, and feel free to close, but I was just wondering if you'd considered compatibility with Node.js worker_threads here at all? It seems like the sort...
As far as I'm aware, when the original WebAssembly JS API was developed the ES module spec namespace exotic object had not been fully defined, thus `exports` was created as...
Somewhat related to https://github.com/WebAssembly/esm-integration/issues/41, it's worth thinking about what CSP policies will apply to the ESM integration when importing Wasm. Currently the [Wasm CSP spec](https://github.com/WebAssembly/content-security-policy/blob/master/proposals/CSP.md) defines `wasm-unsafe-eval` to be required...
I wonder if it would be possible to create a variation of this project that works for Node apps running SystemJS? That could potentially just use the hot-reloader component with...
Object expressons like: ```js module.exports = { render: _render2['default'], shallow: _shallow2['default'], mount: _mount2['default'], ShallowWrapper: _ShallowWrapper2['default'], ReactWrapper: _ReactWrapper2['default'], configure: _configuration.merge, EnzymeAdapter: _EnzymeAdapter2['default'] }; ``` would still be beneficial to fully support...
In CommonJS modules the `this` assignment also works for named exports: ```js this.exportName = 'value'; ``` So long as we are at the top-level, the above would be straightforward to...
base64-js is used in the buffer module, so it would save a little bit of duplication. Is there a good reason to have two implementations?
### Feature Use Case The interpretation of rollup.config.js files doesn't quite match the Node.js execution model leading to subtle bugs. ### Feature Proposal If we drop support for Node.js <...