0.2.1 • Published 3 years ago

@lykmapipo/express-request-extra v0.2.1

Weekly downloads
388
License
MIT
Repository
github
Last release
3 years ago

express-request-extra

Build Status Dependencies Status Coverage Status GitHub License

Commitizen Friendly code style: prettier Code Style npm version

Handy helpers for express request.

Note: Make sure you use body-parser for desired behaviour

Requirements

  • NodeJS v9.3.0+
  • body-parser

Install

$ npm install --save @lykmapipo/express-request-extra

Usage

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
});

API

request.all():Object

Retrieve all request input data

Example

const all = request.all();

request.input([key], [default]):Object

Retrieve an input item from the request input data

Example

const name = request.input('name', 'John Doe');

const all = request.input();

request.only(...keys):Object

Retrieve 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):Object

Retrieve request input data except of specified keys

Example

const product = request.except('price', 'owner');

const product = request.except(['price', 'owner']);

request.merge(Object):Object

Retrieve request input damerge new input into the current request's input data

Example

const user = request.merge({level: 1});

request.defaults(Object):Object

merge 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):Boolean

Determine if the request contains a given input item key

Example

const hasName = request.exists('name');

request.has(key):Boolean

Determine if the request contains a given input item key

Example

const hasName = request.has('name');

Testing

  • Clone this repository

  • Install all development dependencies

$ npm install
  • Then run test
$ npm test

Contribute

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.

Licence

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.

0.2.1

3 years ago

0.2.0

3 years ago

0.1.41

3 years ago

0.1.40

3 years ago

0.1.39

4 years ago

0.1.38

4 years ago

0.1.37

4 years ago

0.1.36

4 years ago

0.1.35

4 years ago

0.1.34

4 years ago

0.1.33

4 years ago

0.1.32

4 years ago

0.1.31

4 years ago

0.1.30

4 years ago

0.1.29

4 years ago

0.1.28

4 years ago

0.1.27

4 years ago

0.1.26

4 years ago

0.1.24

4 years ago

0.1.23

4 years ago

0.1.22

4 years ago

0.1.21

4 years ago

0.1.20

4 years ago

0.1.19

4 years ago

0.1.18

4 years ago

0.1.17

4 years ago

0.1.16

4 years ago

0.1.15

4 years ago

0.1.14

5 years ago

0.1.13

5 years ago

0.1.12

5 years ago

0.1.11

5 years ago

0.1.10

5 years ago

0.1.9

5 years ago

0.1.8

5 years ago

0.1.7

5 years ago

0.1.6

5 years ago

0.1.5

5 years ago

0.1.4

5 years ago

0.1.3

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

6 years ago