1 مستودع
Middleware specifically designed for the Node.js runtime to parse HTTP request bodies.
Distinguishing note: Shortlist candidates focus on servers, clients, or agents, not the parsing middleware itself.
Explore 1 awesome GitHub repository matching web development · Node.js Request Parsers. Refine with filters or upvote what's useful.
body-parser is a Node.js HTTP request parser that converts incoming request bodies into structured JavaScript objects. It provides utilities to extract and process JSON, raw binary, plain text, and URL-encoded payloads for use in web servers. The project employs a middleware pattern to augment request objects, attaching parsed data directly to the request for use in subsequent route handlers. It uses content-type based dispatching to select the appropriate parsing logic based on the request headers. The tool manages data streams by consuming payloads in chunks and accumulating binary buffers
Provides middleware for Node.js that parses incoming request bodies into usable JavaScript objects.