due to the way Node Streams work, writing to a stream is apparently not even truly fire-and-forget: https://nodejs.org/api/stream.html#stream_writable_write_chunk_encoding_callback (e.g. in https://github.com/purescript-node/purescript-node-streams/blob/master/src/Node/Stream.js#L144) Maybe it might be worthwhile to use their `drain` event and just return a facade to downstream users for the Eff? e.g. https://github.com/owickstrom/hyper/blob/v0.8.0/src/Hyper/Node/Server.purs#L70 I ran into this while developing my [vidtracker](https://github.com/justinwoo/vidtracker/) app and mashing Ctrl+R...