
Security News
Vite+ Joins the Push to Consolidate JavaScript Tooling
Evan You announces Vite+, a commercial, Rust-powered toolchain built on the Vite ecosystem to unify JavaScript development and fund open source.
qs-middleware
Advanced tools
Connect querystring middleware.
var connect = require('connect');
var query = require('qs-middleware');
var app = connect();
app.use(query());
Install QS Middleware with npm:
npm install qs-middleware
query(options)
Create a querystring middleware which adds a parsed query
property to the request object:
app.use(query());
app.use(function(request, response) {
console.log(request.query);
});
You can optionally pass in options which are handed directly to the qs module, which handles querystring parsing:
app.use(query({
allowDots: true
}));
To contribute to QS Middleware, clone this repo locally and commit your code on a separate branch.
Please write unit tests for your code, and check that everything works by running the following before opening a pull-request:
make ci
QS Middleware is licensed under the Lesser General Public License (LGPL-3.0) license.
Copyright © 2016, Springer Nature
1.0.3 (2017-03-08)
"author"
field in package.json
.FAQs
Connect querystring middleware
The npm package qs-middleware receives a total of 8,480 weekly downloads. As such, qs-middleware popularity was classified as popular.
We found that qs-middleware demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Evan You announces Vite+, a commercial, Rust-powered toolchain built on the Vite ecosystem to unify JavaScript development and fund open source.
Security News
Ruby Central’s incident report on the RubyGems.org access dispute sparks backlash from former maintainers and renewed debate over project governance.
Research
/Security News
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.