Skip to content

Latest commit

 

History

History
24 lines (14 loc) · 310 Bytes

req.query.md

File metadata and controls

24 lines (14 loc) · 310 Bytes

req.query

An object containing the parsed query-string, defaulting to {}.

Usage

req.query;

Example

If the request is GET /search?q=mudslide:

req.query.q
// -> "mudslide"