
Security News
Socket Releases Free Certified Patches for Critical vm2 Sandbox Escape
A critical vm2 sandbox escape can allow untrusted JavaScript to break isolation and execute commands on the host Node.js process.
@lykmapipo/express-request-extra
Advanced tools
Handy helpers for express request.
Note: Make sure you use body-parser for desired behaviour
$ npm install --save @lykmapipo/express-request-extra
import express from 'express';
import bodyParser from 'body-parser';
import '@lykmapipo/express-request-extra';
const app = express();
app.use(bodyParser.urlencoded({ extended: true }))
app.use(bodyParser.json())
app.all('/:id?', (request, response) => {
const all = request.all(); // get all inputs
const inputs = request.input(); // get all inputs if key not specified
const name = request.input('name', 'John Doe'); // get name or default
const only = request.only('name', 'level'); // get only specified inputs
const except = request.except('age', 'point'); // get all except specified input
const exists = request.exists('name'); // check name for existence
const has = request.has('name'); // check name for existence
const merged = request.merge({level: 14}); // merge to input
});
request.all():ObjectRetrieve all request input data
Example
const all = request.all();
request.input([key], [default]):ObjectRetrieve an input item from the request input data
Example
const name = request.input('name', 'John Doe');
const all = request.input();
request.only(...keys):ObjectRetrieve a subset of items of specified keys from request input data
Example
const point = request.only('longitute', 'latitude');
const point = request.only(['longitute', 'latitude']);
request.except(...keys):ObjectRetrieve request input data except of specified keys
Example
const product = request.except('price', 'owner');
const product = request.except(['price', 'owner']);
request.merge(Object):ObjectRetrieve request input damerge new input into the current request's input data
Example
const user = request.merge({level: 1});
request.defaults(Object):Objectmerge new input into the current request's input data without overriding existing
Example: use password quest if request has no password input
const user = request.defaults({password: 'guest'});
request.exists(key):BooleanDetermine if the request contains a given input item key
Example
const hasName = request.exists('name');
request.has(key):BooleanDetermine if the request contains a given input item key
Example
const hasName = request.has('name');
Clone this repository
Install all development dependencies
$ npm install
$ npm test
It will be nice, if you open an issue first so that we can know what is going on, then, fork this repo and push in your ideas. Do not forget to add a bit of test(s) of what value you adding.
The MIT License (MIT)
Copyright (c) lykmapipo & Contributors
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Handy helpers for express request
We found that @lykmapipo/express-request-extra 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.

Security News
A critical vm2 sandbox escape can allow untrusted JavaScript to break isolation and execute commands on the host Node.js process.

Research
Five malicious NuGet packages impersonate Chinese .NET libraries to deploy a stealer targeting browser credentials, crypto wallets, SSH keys, and local files.

Security News
pnpm 11 turns on a 1-day Minimum Release Age and blocks exotic subdeps by default, adding safeguards against fast-moving supply chain attacks.