diff --git a/doc/api/stream.md b/doc/api/stream.md index 5db990d4d2cc3d..2a49a128ffccf0 100644 --- a/doc/api/stream.md +++ b/doc/api/stream.md @@ -28,10 +28,13 @@ objects will rarely (if ever) have need to use the `stream` module directly. ## Organization of this Document -This document is divided into two primary sections with a third section for +This document is divided into four primary sections with a fifth section for additional notes. The first section explains the elements of the stream API that are required to *use* streams within an application. The second section explains the elements of the API that are required to *implement* new types of streams. +The third section is geared towards explanations and *code examples*. The fourth +section showcases important *npm modules* that make working with streams +easier. ## Types of Streams @@ -2202,6 +2205,10 @@ stream that simply passes the input bytes across to the output. Its purpose is primarily for examples and testing, but there are some use cases where `stream.PassThrough` is useful as a building block for novel sorts of streams. +## Explanations and Code Examples + +## Important NPM Modules + ## Additional Notes