Open nick94404 opened 8 years ago
Apologies for delayed grading. Response times during the course will be much shorter.
For this submission to be considered complete...
Please update README.md
to include:
Your embedded walkthrough.gif
:
![Video Walkthrough](walkthrough.gif)
Please update the issue title to the following:
[Node.js Bootcamp] Project 0: Proxy Server - Ready for Review
Please use the provided Pre-work README.md
, Example README.md
and the Submitting Assignments Guide for how to properly submit an assignment.
let outboundRes = request(outboundUrl)
logFileStream.write(JSON.stringify(outboundRes.headers))
outboundRes.pipe(res)
outboundRes.pipe(logFileStream)
My proxy server assignment is ready for review. /cc @codepathreview @codepath
With this exercise, I am able to to log request headers and body to a log file. But how do I log response payload to the client on proxy server?