Package Exports
- hapi-qs
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (hapi-qs) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Hapi QS
Hapi plugin that brings back qs support that was removed in Hapi 12 (https://github.com/hapijs/hapi/issues/2985).
hapi-qs v1.1.3 is for Hapi v12 to v16. hapi-qs v2+ support Hapi v17 only.
Install
npm install hapi-qs
Or for pre-Hapi 17:
npm install hapi-qs@1.1.3
Usage
const server = new Hapi.Server();
await server.register({
plugin: require('hapi-qs'),
options: {} /* optional */
});
Parsing query
server.route({
method: 'GET',
path: '/',
handler: (request, h) => {
return request.query; // request.query constains the parsed values
}
});
Parsing payload
Payload will only be parsed if content-type is set to a kind of x-www-form-urlencoded
or multipart/form-data
server.route({
method: 'POST',
path: '/',
handler: (request, h) => {
return request.payload; // request.query constains the parsed values
}
});
Options
- qsOptions (default
undefined
): This object is past directly to Qs parse method (more info) - queryString (default
true
): whether to parse query string - payload: whether to parse payload (it is valid only when content-type header is a kind of
x-www-form-urlencoded
ormultipart/form-data
)
Running tests
npm test