-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Add a method to handle parsing the body of a request. This can either be via middleware (like Express) or built-in, such as a check against the header content-type
. I prefer the latter, so that parsing does not need to be something the developer thinks about.
router.post("/", (req, { body }) => {
// Do something with the body
}
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request