Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

require-fields

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

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.

  • 1.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
6
increased by100%
Maintainers
1
Weekly downloads
 
Created
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

Package last updated on 08 Dec 2017

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc