Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 475 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 475 Bytes

Deno missing .send() method on ChildProcess

A child process in node has a send() method that is missing in deno.

Steps to reproduce

  1. Clone this repo
  2. Run deno run -A foo.js

Error

error: Uncaught TypeError: child.send is not a function
  child.send({ hello: "world" }); // <- Throws missing methods
        ^
      at file:///project/foo.js:13:7