Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
express-query-params
Advanced tools
Express.js middleware implementing the API Query Spec, converting the params to SQL or a Mongo query
Express.js middleware implementing the API Query Spec, converting the query to something that can be used to look up the resource.
npm i --save express-query-params
This middleware can just be plugged into your stack like so:
var express = require('express');
var queryParams = require('express-query-params');
var app = express();
app.use(queryParams());
The middleware accepts a few options to make your life easier:
app.use(queryParams({
// Function to parse integers or floats - defaults to javascript's own parseFloat
parseNum: parseFloat,
// Will validate dates according to this format - defaults to ISO_8601
dateFormat: '2014-01-01',
// Function to parse dates to the `dateFormat` variable - defaults to Moment.js
parseDate: function() {},
// Set this to false to disable type casting and have the output be all strings
typeCast: true,
// Accepts `mongodb` or `sql` - defaults to `mongodb`
format: 'mongodb'
}));
So far, this middleware supports mongodb
and sql
as output formats.
In case of mongodb
, the output is a javascript object that can be used to query MongoDb.
In case of sql
, it will output a WHERE
clause for you as a string.
mocha
FAQs
Express.js middleware implementing the API Query Spec, converting the params to SQL or a Mongo query
The npm package express-query-params receives a total of 37 weekly downloads. As such, express-query-params popularity was classified as not popular.
We found that express-query-params demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.