diff --git a/README.md b/README.md index fbbabc69..7911ab22 100644 --- a/README.md +++ b/README.md @@ -302,6 +302,10 @@ Where the value can be any of: if (done) break; console.log('new chunk:', value); // Uint8Array } + + // Or, in Node.js, you can pipe the above stream as follows: + const nodeStream = openpgp.stream.webToNode(encrypted); + nodeStream.pipe(nodeWritableStream); })(); ```