-
Notifications
You must be signed in to change notification settings - Fork 6.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migrated the legacy guide Backpressuring in Streams to the learn section #6261
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Lighthouse Results
|
My review:
|
Wouldn't it be better to put it in the "module" section/category? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks for starting this work!
as noted in #6228 - can you lightly update the content? here's a couple short observations
- import vs require
- prefer
node:
imports when an internal package - streams now have a promise api, negating the need for
promisify
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
@@ -80,6 +80,12 @@ | |||
"modules": "Modules", | |||
"publishingNodeApiModules": "How to publish a Node-API package" | |||
} | |||
}, | |||
"backpressuring": { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The category should be "streams", not "Backpressuring". Can you make these changes? (Since it will require changes in many files?)
Also, the link should probably be /learn/streams/backpressuring-in-streams
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually, this guide should be in the "Modules" category 🤔
Can you setup a redirect from the old guide (guides) to the learn page as done in here? |
Hi everyone! I'm following this discussion and I opened a new PR #6352 to address the points you guys pointed here. |
Closing as superseded by #6352 |
Fixes #6228
Description
Migrated the legacy guide Backpressuring in Streams to the learn section
Validation
Related Issues
Check List
npx turbo lint
to ensure the code follows the style guide. And runnpx turbo lint:fix
to fix the style errors if necessary.npx turbo format
to ensure the code follows the style guide.npx turbo test
to check if all tests are passing.