Skip to content

Latest commit

History

20 Commits

Folders and files

NameName
Last commit message
Last commit date

Repository files navigation

trim-request

Express middleware to trim all incoming request object

Installation

npm install trim-request

Usage

trim-request is very simple to use, just import the package and use one of its methods:

trimRequest.all trim body, params and query objects

trimRequest.body trim only the body object

trimRequest.param trim the params object

trimRequest.query trim the query string object

consttrimRequest=require('@classuper/trim-request');app.post('/person',trimRequest.all(),(req,res,next)=>{res.json(req.body);});

if the client post:

{
name: ' foo ',
age: 20,
}

the code above will return this object:

{
name: 'foo',
age: 20,
}

License

MIT License

About

Express middleware to trim all incoming request object

Resources

Stars

3 stars

Watchers

0 watching

Forks

Releases

Packages

Used by

Contributors

Languages