gpt4 book ai didi

javascript - 带有 Rollup 的 JS 库中的 Web Worker

转载 作者:行者123 更新时间:2023-12-03 17:12:25 24 4
gpt4 key购买 nike

我正在使用 Thread.js web-workers 在 Typescript 中构建一个 negamax 引擎。它是一个 npm 库,将由使用 webpack 构建的应用程序导入。

我正在使用 Rollup 构建引擎 - 如何导出 web-worker 文件,以便将它们作为单独的 block 复制到客户端的构建目录中?

最佳答案

有插件:Alorel/rollup-plugin-web-worker , darionco/rollup-plugin-web-worker-loader
..但我最终还是白手起家,为工作人员使用了单独的构建配置。这只是让我更好地控制局势。
附上rollup.config.worker.js我使用的。
rollup.config.mjs导入此文件,将其配置作为第一个构建配置。真正的构建配置使用 @rollup/plugin-replace将工作人员的哈希注入(inject)到加载它的代码中。

/*
* Rollup config for building web worker(s)
*
* Imported by the main rollup config.
*/
import sizes from '@atomico/rollup-plugin-sizes'
import resolve from '@rollup/plugin-node-resolve'
import replace from '@rollup/plugin-replace'
import { terser } from 'rollup-plugin-terser'

import {dirname} from 'path'
import {fileURLToPath} from 'url'

const myPath = dirname(fileURLToPath(import.meta.url));

const watch = process.env.ROLLUP_WATCH;

const REGION = process.env.REGION;
if (!REGION) throw new Error("'REGION' env.var. not provided");

let loggingAdapterProxyHash;

const catchHashPlugin = {
name: 'my-plugin',

// Below, one can define hooks for various stages of the build.
//
generateBundle(_ /*options*/, bundle) {
Object.keys(bundle).forEach( fileName => {
// filename: "proxy.worker-520aaa52.js"
//
const [_,c1] = fileName.match(/^proxy.worker-([a-f0-9]+)\.js$/) || [];
if (c1) {
loggingAdapterProxyHash = c1;
return;
}
console.warn("Unexpected bundle generated:", fileName);
});
}
};

const pluginsWorker = [
resolve({
mainFields: ["esm2017", "module"],
modulesOnly: true // "inspect resolved files to assert that they are ES2015 modules"
}),
replace({
'env.REGION': JSON.stringify(REGION),
//
preventAssignment: true // to mitigate a console warning (Rollup 2.44.0); remove with 2.45?
}),
//!watch && terser(),
catchHashPlugin,

!watch && sizes(),
];

const configWorker = {
input: './adapters/logging/proxy.worker.js',
output: {
dir: myPath + '/out/worker', // under which 'proxy.worker-{hash}.js' (including imports, tree-shaken-not-stirred)
format: 'es', // "required"
entryFileNames: '[name]-[hash].js', // .."chunks created from entry points"; default is: '[name].js'

sourcemap: true, // have source map even for production
},

plugins: pluginsWorker
}

export default configWorker;
export { loggingAdapterProxyHash }
在主配置中使用:
  replace({
'env.PROXY_WORKER_HASH': () => {
const hash= loggingAdapterProxyHash;
assert(hash, "Worker hash not available, yet!");
return JSON.stringify(hash);
},
//
preventAssignment: true // to mitigate a console warning (Rollup 2.44.0); remove with 2.45?
}),
..在 Worker 加载代码中:
const PROXY_WORKER_HASH = env.PROXY_WORKER_HASH;    // injected by Rollup build

...
new Worker(`/workers/proxy.worker-${PROXY_WORKER_HASH}.js?...`);
如果有人想获得整个 repo 的链接,请留言,我会在那里发布。它仍在不断变化。

编辑:
写完答案后,我遇到了这个: Building module web workers for cross browser compatibility with rollup (博客,2020 年 7 月)
TL;DR 如果您希望为工作人员使用 EcmaScript 模块,请注意!截至今天,Firefox 和 Safari 不支持。 sourceWorker需要告诉构造函数工作源是 ESM。

关于javascript - 带有 Rollup 的 JS 库中的 Web Worker,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60354722/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com