-
I understood Workerd's project as a server-based project. I would like to ask if there is anything that can be of help. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The quick answer is no, there is no support for anything like Node.js' worker_threads and IPC. The longer answer is that you could use |
Beta Was this translation helpful? Give feedback.
The quick answer is no, there is no support for anything like Node.js' worker_threads and IPC. The longer answer is that you could use
connect()
to establish a TCP connection with a Node.js process and handle much of the communication yourself but that's about the extent. The options immediately available built-in toworkerd
are http(s) and websockets.