DEV Community

Ranvir Singh
Ranvir Singh

Posted on • Updated on • Originally published at ranvir.xyz

Validate your request parameters using validation middleware in Node.js

This post was first posted on my blog. Read the post How to write request parameter validation in Node.js, which also includes creating this validation using Joi and AJV.

I get it! You don't want to repeat that code again and again. Maybe you are sick of copying those little function calls all over your code with some change in the parameters. Every time you have to create a new route or new API endpoint you have to write the same code.

For example:

// Inside the route.

if (!request.phone_number) {
    throw new Error('Main request parameter not present.')
}

This will also be helpful for your developers to know which parameters are required for the given route and which of them are optional.

In terms of web development, we call them middleware... Just a fancy name( makes sense though). Middleware is something that is used to manipulate requests or response data.

I have seen people doing a lot of things in the middlewares. The best thing that one can do in the middlewares is logging. You can log your request parameters, headers, response data to wherever you want to log it.

You can extend this article with your programming skills to create anything you want, but in this one, we are going to discuss a specific type of middleware.

A middleware that can validate the request parameters.

How would you feel when you don't have to worry about the incoming request parameters in the routes?

Pretty awesome, right!

You will never have to make any check related to the request parameters. All these checks will be transported to the middleware.

Let's start by writing a simple middleware.

So this is the simple structure of middleware in Node.js. There are three types of checks that are going on in there.

Required Parameter check

This check tries to find if the parameter being requested is required or not. We can specify this while specifying the schema of the route parameters. I will share this schema a little later in this tutorial. If the parameter is required for the route and is not present in the parameters of the route, it will simply raise 400.

This can also give a custom message specifying which param exactly is not present in the request parameters. This part is described on line 21.

Type check

Javascript being less strict related to the type of the variables, we want to add a check which will try to check if the type specified in the schema of the route parameters is the same as the type received from the request parameters.

This part of the code is written on line 6.

Other validation checks

There are multiple occasions when you want to add your own validations to request parameters. For example, you don't want the value to be equal to 0. You can simply create the function and pass it in the schema of the route parameters. These checks are written on line 13.

Here is the schema for route parameters.

This seems to be self-explanatory. If you still have questions, feel free to post them in the comment section.

The cool thing about this is you can at any time integrate your own checks into this.

Testing

One of my colleagues asked me to write tests for this framework as this was going to be used at a lot of places and I agreed with him. But I was a little skeptical on how can we test this framework. After some Googling and StackOverflowing, I was able to test this framework. Here is the code for this.

Edit 1:

I later found that you can use Joi for adding validations to parameters. This is a good option and you can use it if you want.

I hope you guys will like the idea behind the post. Please share it with your colleagues and let me know on social media platforms.

Follow me on twitter as well. https://twitter.com/ranvirsingh1114

I am also open to other standards that are followed in the market.

Also, let me know if you want to know more about anything in there.

Latest comments (0)