We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
How to use childprocess.send and process.on("message")?
main
const child = fork('xxx') child.send("hi")
child
process.on("message', () => {})
The text was updated successfully, but these errors were encountered:
fork has a binding:
fork
rescript-nodejs/src/ChildProcess.res
Lines 129 to 130 in 2f93700
But I can't find one for send. Likewise there are a few on bindings, but nothing for on("message").
send
on
on("message")
Lines 9 to 18 in 2f93700
So both need to be added.
Sorry, something went wrong.
No branches or pull requests
How to use childprocess.send and process.on("message")?
main
child
The text was updated successfully, but these errors were encountered: