admin管理员组文章数量:1347215
I am trying to experiment with worker_threads in node.js
.
const { Worker, isMainThread, parentPort } = require('worker_threads');
if (isMainThread) {
// This code is executed in the main thread and not in the worker.
// Create the worker.
const worker = new Worker(__filename);
// Listen for messages from the worker and print them.
worker.on('message', (msg) => { console.log(msg); });
} else {
// This code is executed in the worker and not in the main thread.
// Send a message to the main thread.
parentPort.postMessage('Hello world!');
}
I save the above code in index.js
and run node --experimental-worker index.js
on terminal.
I get the following error:
node: bad option: --experimental-worker.
I have v8.16.0
of node installed in my mac.
I am trying to experiment with worker_threads in node.js
.
const { Worker, isMainThread, parentPort } = require('worker_threads');
if (isMainThread) {
// This code is executed in the main thread and not in the worker.
// Create the worker.
const worker = new Worker(__filename);
// Listen for messages from the worker and print them.
worker.on('message', (msg) => { console.log(msg); });
} else {
// This code is executed in the worker and not in the main thread.
// Send a message to the main thread.
parentPort.postMessage('Hello world!');
}
I save the above code in index.js
and run node --experimental-worker index.js
on terminal.
I get the following error:
node: bad option: --experimental-worker.
I have v8.16.0
of node installed in my mac.
- 1 can you share documentation? cant find it pre v10.5, added 10.5. nodejs/docs/latest-v10.x/api/… – Estradiaz Commented Sep 29, 2019 at 9:49
- Hey @Estradiaz, I upgraded the node version and its working now. Thanks! – user3807454 Commented Sep 29, 2019 at 10:15
- @estradiaz Please turn your ment into an answer – Marged Commented Sep 29, 2019 at 11:56
2 Answers
Reset to default 8The Worker
class was added in nodejs v10.5.0.
To use --experimental-worker
one will need at least nodejs v10.5.0
With nodejs v12.x it is stable and can be used without --experimental-worker
Downloads: nodejs
Version Manager: nvm
I had same issue, but as suggested by @Estradiaz I upgraded my node version from v8.16.0 to v.12.13.1 by
- nvm install 12.13.1
- nvm use 12.13.1 then the issue solved.
本文标签: javascriptnode bad option experimentalworkerStack Overflow
版权声明:本文标题:javascript - node: bad option: --experimental-worker - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743834160a2547080.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论