How can you reuse a Readable stream in node.js?

If I have an http server, and I want to write the same output to every request, it seems silly to recreate a new stream on every request. But, I'm noticing that if I pipe a file-stream somewhere for example, trying to pipe it again doesn't do anything.

How can I reuse a stream?