-
-
Notifications
You must be signed in to change notification settings - Fork 1
This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What's in-scope? #10
Comments
Another thing I've noticed is that there appears to be support for importing Also consider that some people may not want to have HTTP imports. if (process.execArgv.includes("--experimental-network-imports") {
applyCustomHTTPLoader(); // Or whatever...
} Thoughts? 🤔 |
The hole reason i wanted to have custom experimental loaders where not particularly import so the idea was to do something like: const blob = new Blob([`
import fs from 'node:fs'
fs.writeFileSync(...)
`], { type: 'text/javascript' })
const url = URL.createObjectURL(blob)
import(url) But sure this could maybe be an option for this. |
There are some thing that NodeJS is working on about implementing there are issues here as well:
but we could implement whatever we feel like a web worker should actually have |
I just realized Discussions were enabled on this repo. 🤦♂️ If you could, would move this issue to a Discussion pls to satisfy my brain 🧠🙏 |
This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
There's other stuff that is specified in the https://html.spec.whatwg.org/multipage/workers.html page relating to how the
Worker
interface works. For instance, there's aWorkerNavigator
andWorkerLocation
. I assume these are out-of-scope, but I just want to confirm? There's also theonoffline
,onlanguagechange
, andononline
events.The text was updated successfully, but these errors were encountered: