-
Notifications
You must be signed in to change notification settings - Fork 153
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
Anyone able to get workerpool to work on Vite? #341
Comments
It may be that you'll first have to create a bundle of the worker, and then load that bundle. This is a known difficulty discussed in #189 |
Hey, thanks a lot for getting back. I have made some progress since I asked this question, and after a bit of learning I figured out that's what I need to do. I'd like to comment though, that it would be nice to be able to use ES module imports in workers, but at the moment it seems workerpool in the browser only supports the "classic" type of work, i.e. with Thanks |
Good to hear. Good point about the ES module. I've opened an issue for that: #342. Will close this issue now. |
That's cool, tanks! |
hi sterekai, can you say more about the "classic" way please |
@brunoAmado Yes, it basically means your worker TS/JS file should be a traditional JS script, and not an ES6 module (can't have any Instead of importing them using ES6 modules, I used https://github.com/syJSdev/rollup-plugin-copy-merge in my Vite config to merge all the separate sources that make my worker, incl. the workerpool script (from I then import the compiled worker file in the app like this: import workerpool from "workerpool"
const workerPool = workerpool.pool(
new URL("./CompiledWorker.js", import.meta.url).href,
{
maxWorkers: 3,
}
); You can see the approach I took here: https://github.com/stereokai/multi-charts-comparison I know that it's |
Thanks you, you are an inspiration and saviour. Will try that even if I'm using Next.js it will be helpfull |
Happy I could help 😊 |
Here is another way that worked for me. Kind of ugly and I had to disable "isolatedModules" in my tsconfig. // import your latest workerpool version from a cdn here
importScripts("https://cdn.jsdelivr.net/npm/workerpool@6.3.1/dist/workerpool.min.js");
function fibonacci(n: number): number {
if (n < 2) return n;
return fibonacci(n - 2) + fibonacci(n - 1);
}
// create a worker and register public functions
// @ts-ignore: ts won't know workerpool here
workerpool.worker({
fibonacci: fibonacci,
}); Edit: This works as well if you have it installed locally, not sure what's the better option here lol importScripts("../node_modules/workerpool/dist/workerpool"); |
@Ctrlmonster is it working for you on Vite 2? Or Vite 3? |
Vite 3 |
@Ctrlmonster So I thought. This way is the standard Ecmascript way, but it's not supported in Vite 2. At least not in 2.9.1, don't know about later 2.9.x versions (this is what the original issue was about). |
@stereokai I see your repo |
@sedghi Sure. I had to take it down because the project has graduated into a proprietary product. Here is the code I originally linked to earlier:
import replace from "@rollup/plugin-replace";
import jscc from "rollup-plugin-jscc";
import copy from "rollup-plugin-copy-merge";
const replaceRules = {};
const jsccRules = {
values: {
_DEVELOPMENT: process.env.NODE_ENV === "development",
},
options: {
asloader: false,
},
};
const copyTargets = [
{
src: [
resolve("workerTask1.js"),
resolve("workerTask2.js"),
resolve("workerApi.js"),
],
file: resolve("CompiledWorker.js"),
},
];
const workerpool = "node_modules/workerpool/dist/workerpool.js";
if (process.env.NODE_ENV === "production") {
copyTargets[0].src.unshift(
resolve(...workerpool.split("/"))
);
}
if (process.env.NODE_ENV === "development") {
replaceRules["//importScripts()"] = `importScripts("/${workerpool}")`;
}
export default defineConfig({
plugins: [
copy({
hook: "buildStart",
targets: copyTargets,
}),
replace(replaceRules),
jscc(jsccRules),
//...
import workerpool from "workerpool";
const workerPool = workerpool.pool(
new URL("./CompiledWorker.js", import.meta.url).href,
{
maxWorkers: 3,
}
);
//#if _DEVELOPMENT
//importScripts();
//#endif
workerpool.worker({
task1: workerTask1,
task2: workerTask2,
}); |
@stereokai Really appreciate it. Quick question, did any of your workerTasks have any external dependencies too or not? |
Nothing from node_modules, only "imports" from within the codebase. Whichever kind of dependency you might have, you'll need to use the |
Thanks for the explanation! I'm wondering whether Rollup can do tree shaking based on what piece of the node_module dependency is needed inside the task, and does not bring the whole dependency |
I'm not sure, because this is not really ES/CJS imports per se, it's simple text file composition. But, you could add an earlier build step that imports the node_modules you need using Rollup, compiles it with tree shaking into a separate, temporary bundle, and simply add the bundle path to the source array of the copy plugin. It will copy that bundle into the compiled worker, together with your tasks. You just have to make sure Rollup exposes the imported packages in the global scope and doesn't encapsulate them as a module to import, otherwise your tasks couldn't access their dependencies. I'm sure there's a Rollup option for that. |
For anyone curious, Workerpool has a Vite example up and going. https://github.com/josdejong/workerpool/tree/master/examples/vite
|
Can I add URL type input? Using URL. href will result in errors in cjs import { join } from 'path';
import { Worker } from 'worker_threads';
import { pool } from 'workerpool';
(() => {
let a = join(__dirname, 'b.mjs');
// console.log(a);
// new Worker(new URL(a, 'file:')); //success
let instance = pool(new URL(a, 'file:').href);
instance.exec(''); //error
})(); now I run with import { join } from 'path';
import { pool } from 'workerpool';
(() => {
let a = join(__dirname, 'b.mjs');
let url = new URL(a, 'file:');
let instance = pool(url.href, {
onCreateWorker(arg) {
return { ...arg, script: url as any };
},
});
instance.exec('');
})(); |
Not sure, but maybe you can use a dynamic import like |
I've been pulling my hair on this for a few hours...
How do I set up workerpool in a Vite app to use a dedicated worker?
I tried almost every setting combination I could figure out.
I end up either with two separate instances of workerpool, and the error
Error: Unknown method "fibonacci"
, or unable to call the regular workerpool instance from the worker withimportScripts()
The text was updated successfully, but these errors were encountered: