Bradley Farias

Results 56 issues of Bradley Farias

Do we have a process for how we should upload videos that got recorded into zoom instead of streamed to youtube? It seems while I recorded the loaders meeting yesterday...

This was talked about in the feedback meeting, but https://github.com/v8/web-tooling-benchmark currently is only setup to test a minimal subset of workflows that do not use asynchronous tasks. That is the...

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....

If this is a syntactic sugar for generators consider the following: ``` function* g() { try { yield todo(); } finally { yield cleanup(); }; } let o = g();...

https://datatracker.ietf.org/doc/draft-ietf-dispatch-javascript-mjs/ is under review and has a mailing list thread open about it at https://mailarchive.ietf.org/arch/msg/dispatch/X3aBzTbPFT8bJRAYcO7ldjJmAls Please respond with any endorsements or concerns.

Given that we have self referential packages, and `"imports"` in `package.json`. In addition since `//` is reserved I think we should remove the reservation since it will by the default...

Right now loaders cannot directly share data from their implementation, the global preload code, or the modules that they generate. We need to add a communications channel such as a...

discussion
features
brainstorming

Right now we always generate modules via a static/serializable blob. With the removal of `dynamicInstantiate` we need to figure out what we want to do with [`v8::Module::CreateSyntheticModule`](https://github.com/v8/v8/blob/246344ad2c69fc3b817696f685205b1cbd8baf51/include/v8.h#L1565). In theory this...

discussion
brainstorming

`"type"` in `package.json` has a few affects: * when loading the main entrypoint of the process or a worker thread it can determine which loader to use: ESM loader (if...

Help Wanted