-
-
Notifications
You must be signed in to change notification settings - Fork 32k
inspector: add protocol methods retrieving sent/received data #58645
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
Merged
nodejs-github-bot
merged 1 commit into
nodejs:main
from
legendecas:inspector/data-sent-api
Jun 20, 2025
Merged
inspector: add protocol methods retrieving sent/received data #58645
nodejs-github-bot
merged 1 commit into
nodejs:main
from
legendecas:inspector/data-sent-api
Jun 20, 2025
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add protocol method `Network.dataSent` to buffer request data. And expose protocol methods `Network.getRequestPostData` and `Network.getResponseBody` allowing devtool to retrieve buffered data.
0d15711
to
5b2f8a5
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #58645 +/- ##
========================================
Coverage 90.15% 90.15%
========================================
Files 636 637 +1
Lines 187891 188001 +110
Branches 36879 36899 +20
========================================
+ Hits 169386 169493 +107
+ Misses 11272 11245 -27
- Partials 7233 7263 +30
🚀 New features to boost your workflow:
|
@nodejs/inspector would you mind taking a look? Thank you! |
islandryu
approved these changes
Jun 19, 2025
Landed in 5a14ea6 |
RafaelGSS
pushed a commit
that referenced
this pull request
Jun 23, 2025
Add protocol method `Network.dataSent` to buffer request data. And expose protocol methods `Network.getRequestPostData` and `Network.getResponseBody` allowing devtool to retrieve buffered data. PR-URL: #58645 Reviewed-By: Ryuhei Shima <[email protected]>
This was referenced Jun 23, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Add protocol method
Network.dataSent
to buffer request data. Andexpose protocol methods
Network.getRequestPostData
andNetwork.getResponseBody
allowing devtool to retrieve buffered data.