nodejs.org
nodejs.org copied to clipboard
chore: Rename "Read streams" example to "Streams Pipeline"
Description
This PR renames the "Read Streams" example in the home page to "Streams Pipeline".
This particular example illustrates how to create a complete streaming pipeline. It's not just reading, but it is also transforming (Gzipping) and writing.
I think "Streams pipeline" is a more appropriate and captivating name for it.
Validation
Related Issues
#6491 which removes the unnecessary promisify in favour of stream/promises
Check List
- [X] I have read the Contributing Guidelines and made commit messages that follow the guideline.
- [X] I have run
npx turbo format
to ensure the code follows the style guide. - [X] I have run
npx turbo test
to check if all tests are passing. - [X] I have run
npx turbo build
to check if the website builds without errors. - [X] I've covered new added functionality with unit tests if necessary.