2.0.0 • Published 6 years ago

express-query-boolean v2.0.0

Weekly downloads
17,345
License
MIT
Repository
github
Last release
6 years ago

express-query-boolean

Convert query strings to dates for express/connect applications.

npm build status

Installation

npm install --save express-query-boolean

Getting Started

The module will recursively attempt to parse every property in req.query.

Load it right after bodyParser:

var boolParser = require('express-query-boolean');

// [...]

app.use(bodyParser.json());
app.use(boolParser());

Without

// ?a=true&b[c]=false
console.log(req.query);
// => { a: 'true', b: { c: 'false' } }

With

// ?a=true&b[c]=false
console.log(req.query);
// => { a: true, b: { c: false } }

License

Copyright (c) 2015 Marius Craciunoiu. Licensed under the MIT license.