I\'m trying to implement some validation in a sign up system, but I get the error:
TypeError: req.checkBody is not a function
from th
Same as in the above answer, after installing express-validator, adding
server.use(expressValidator());
under
const express=require("express");
and
const server=express();
solved my problem.