Socket
Socket
Sign inDemoInstall

require-fields

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    require-fields

An express middleware that makes it easy to check that certain values are present in a request.


Version published
Weekly downloads
5
increased by400%
Maintainers
1
Install size
5.66 kB
Created
Weekly downloads
 

Readme

Source

Require Fields

An express middleware that makes it easy to check that certain values are present in a request.

Getting Started

First you need to make sure that body parser is being used by your express app.

app.use(bodyParser.urlencoded({extended: true}))
app.use(bodyParser.json())

Then all you have to do is require this package and use it in your routes!

var requireFields = require('require-fields')

app.route("login").post(
  requireFields([
    "email",
    "password"
  ]),
  //other middleware / your code
)

Notice how I passed an array of string values into the middleware. These strings are the fields that the middleware will check for. If a request comes in that's missing one of those fields, it will send a 400 Bad Request. The json of the response will look like this:

{
  "message" : "Missing required fields",
  "missingFields" : [
    "missingField1",
    "missingField2"
  ]
}

FAQs

Last updated on 08 Dec 2017

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc