[tw5] Re: Web Worker URL

2024-06-26 Thread Jeremy Ruston
Hi James Besides the discussion group at https://talk.tiddlywiki.org, there are more developer-oriented discussions at https://github.com/Jermolene/TiddlyWiki5 To answer your question, you'll need to make a Blob Url of the content of the tiddler. The closest example in the core code is

[tw5] Re: Web Worker URL

2024-06-26 Thread PMario
Hi, >From your description I'm not really sure how your code looks like, but the Security Error, says `file://..` With modern browsers we are not allowed to require() code from a file-url, due to security concerns. So the best way is, to also add the library to the client as a plugin. Then you

[tw5] Re: Web Worker URL

2024-06-26 Thread Scott Sauyet
I don't have any answers, but I would suggest that you post this instead at https://talk.tiddlywiki.org/. Most community activity happens there. (Note that threads from Google Groups are included there, but are read-only.) -- Scott -- You received this message because you are subscribed

[tw5] Web Worker URL

2024-06-26 Thread James Mclellan
Good morning all. I have a CPU-intensive data operation that I'm trying to spread across multiple CPUs in TiddlyWiki using a Web Worker (https://developer.mozilla.org/en-US/docs/Web/API/Worker) I have created a server-side library module and a client-side library module. The client-side