node.js 列出所有活动线程

node.js list all active threads

我正在尝试自学 node.js 中的同步和异步写作。 出于兴趣,我想在尝试使用 fs.writeFile() 将随机行写入 txt.-file 时检查所有活动线程。如果有任何方法可以做到这一点,我会很高兴得到一个可以帮助我理解这个主题的答案。

与使用多线程相比,在Node.js中使用多进程要容易得多。比如cluster模块可以运行多个进程中的相同js代码

有关集群模块的更多信息:How to use clusters in node js?

要获取所有进程的列表,请参考此post:how to get the list of process

有关 node.js 中线程的更多信息,请参阅:https://nodejs.org/api/worker_threads.html