-
Web Worker
var w;
function iniciar(){
if(typeof(Worker)!=="undefined"){
if(typeof(w)=="undefined"){
w = new Worker("worker.js");
}
w.onmessage = function(…
-
Is there any plan to support web worker in noVNC?
Currently, noVNC run in single javascript thread which do RFB protocol analysis, UI update, and keyboard listener works.
This work fine.
But in a l…
-
Using the [Vite PWA plugin for SvelteKit](https://vite-pwa-org.netlify.app/frameworks/sveltekit.html), we can create a service worker and manifest.
We can then start using the service worker to run…
-
### How can we reproduce the crash?
https://github.com/Dimava/misc/tree/bunbug1 (bunbug1 branch)
### Relevant log output
```shell
PS D:\projects\misc> bun run .\index.ts
==========================…
-
### What happened?
Sometimes when starting web/worker containers we experience a race condition from the static files volume being simultaneously mounted in both containers.
The error occurs in …
-
### Use case
In flutter web, developers need to set up service-worker to run background jobs. For example, firebase_messaging introduces the following snippet to be added.
https://firebase.googl…
-
I looove the idea of this project. Been looking for something like this for quite some time. If you can add a donate section I think a lot of people are interested in keeping this projects and its mom…
-
### Preflight Checklist
- [X] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/main/CONTRIBUTING.md) for this project.
- [X] I agree to follow the [Code of Conduct]…
-
Has it been explored if CPU-intensive tasks like chart initialization can be offloaded to web worker threads?
For example, when I initialize around 20 charts at the same time, I observe a 5 second …
-
Is it possible to add Web worker support without needing to eject?