How do you read the request body in Node.js?
The request body is a readable stream. Listen to 'data' for chunks and 'end' for completion. For JSON, concatenate chunks and JSON.parse. Express's json middleware does this automatically.
Verify This Answer
Cross-check this information using these trusted sources:
More FAQs in Node.js Server and HTTP Interview Questions With Answers
Use require('http') and http.createServer with a request listener. The listener receives request and response. Call response.end to finish the response, and listen on a port with server.listen.
request (IncomingMessage) is the incoming HTTP request with url, method, headers, and body as a readable stream. response (ServerResponse) is what you send back: status code, headers, and body via writeHead, write, and end.
A function that runs between the request and the response. It can modify the request, end the response, or call the next middleware. Auth, logging, and body parsing are common middleware.
Still have questions?
Browse all our FAQs or reach out to our support team
