Validating Date Inputs with express-validator in Node.js
Last Updated :
08 Jan, 2025
In HTML forms, we often required validation of different types. Validate existing email, validate password length, validate confirm password, validate to allow only integer inputs, these are some examples of validation. In some cases, we want the user to type a date that must come after some given date (Ex. 'end date' must be after 'start date') and based on that we give the user access to the request or deny the request access. We can also validate these input fields using express-validator middleware.
Command to Install express-validator
npm install express-validator
Steps to Use express-validator to Implement the Logic
- Install express-validator middleware.
- Create a validator.js file to code all the validation logic.
- Use custom validator to validate and fetch the start date as request body.
- Convert the date strings to a valid date and compare them according to requirement.
- Use the validation name(validateInputField) in the routes as a middleware as an array of validations.
- Destructure ‘validationResult’ function from express-validator to use it to find any errors.
- If error occurs redirect to the same page passing the error information.
- If error list is empty, give access to the user for the subsequent request.
Note: Here we use local or custom database to implement the logic, the same steps can be followed to implement the logic in a regular database like MongoDB or MySql.
Example: This example illustrates how to validate a input field to only allow a date after a given date.
Filename – index.js
JavaScript
const express = require("express")
const bodyParser = require("body-parser")
const {validationResult} = require("express-validator")
const repo = require("./repository")
const {validateEndDate} = require("./validator")
const formTemplet = require("./form")
const app = express()
const port = process.env.PORT || 3000
// The body-parser middleware to parse form data
app.use(bodyParser.urlencoded({extended : true}))
// Get route to display HTML form
app.get("/", (req, res) => {res.send(formTemplet({}))})
// Post route to handle form submission logic and
app.post(
"/project", [ validateEndDate ], async (req, res) => {
const errors = validationResult(req)
if (!errors.isEmpty())
{
console.log(errors)
return res.send(formTemplet({errors}))
}
const {
name,
domain,
sdate,
edate,
}
= req.body
// Fetch year, month, day of respective dates
const [sd, sm, sy] = sdate.split("/")
const [ed, em, ey]
= edate
.split("/")
// New record
await repo.create({
"Project Name" : name,
"Project Domain" : domain,
"Start Date" : new Date(sy, sm - 1, sd)
.toDateString(),
"End Date" : new Date(ey, em - 1, ed)
.toDateString()
})
res.send("<strong>Project details stored " +
"successfully in the database</strong>")
})
// Server setup
app.listen(port, () => {console.log(
`Server start on port ${port}`)})
Filename – repository.js: This file contains all the logic to create a local database and interact with it.
JavaScript
// Importing node.js file system module
const fs = require("fs")
class Repository {
constructor(filename) {
// Filename where data are going to store
if (!filename) {
throw new Error(
"Filename is required to create a datastore!")
}
this.filename = filename
try {
fs.accessSync(this.filename)
}
catch (err) {
// If file not exist it is
// created with empty array
fs.writeFileSync(this.filename, "[]")
}
}
// Get all existing records
async getAll() {
return JSON.parse(await fs.promises.readFile(
this.filename, {encoding : "utf8"}))
}
// Create new record
async create(attrs) {
// Fetch all existing records
const records = await this.getAll()
// All the existing records with new
// record push back to database
records.push(attrs) await fs.promises.writeFile(
this.filename, JSON.stringify(records, null, 2))
return attrs
}
}
// The 'datastore.json' file created at runtime
// and all the information provided via signup form
// store in this file in JSON format.
module.exports = new Repository("datastore.json")
Filename – form.js: This file contains logic to show the form to submit project data with start and end date.
JavaScript
const getError = (errors, prop) => {
try {
return errors.mapped()[prop].msg
} catch (error) {
return ""
}
}
module.exports = ({errors}) => {
return `
<!DOCTYPE html>
<html>
<head>
<link rel='stylesheet'
href='https://cdnjs.cloudflare.com/ajax/libs/bulma/0.9.0/css/bulma.min.css'>
<style>
div.columns{
margin-top: 100px;
}
.button{
margin-top : 10px
}
</style>
</head>
<body>
<div class='container'>
<div class='columns is-centered'>
<div class='column is-5'>
<form action='/project' method='POST'>
<div>
<div>
<label class='label' id='name'>Project Name</label>
</div>
<input class='input' type='text' name='name'
placeholder='Project Name' for='name'>
</div>
<div>
<div>
<label class='label' id='domain'>Project Domain</label>
</div>
<input class='input' type='text' name='domain'
placeholder='Project Domain' for='base64data'>
</div>
<div>
<div>
<label class='label' id='sdate'>Start Date</label>
</div>
<input class='input' type='text' name='sdate'
placeholder='dd/mm/yyyy' for='sdate'>
</div>
<div>
<div>
<label class='label' id='edate'>End Date</label>
</div>
<input class='input' type='text' name='edate'
placeholder='dd/mm/yyyy' for='edate'>
<p class="help is-danger">${getError(errors, "edate")}</p>
</div>
<div>
<button class='button is-primary'>Submit</button>
</div>
</form>
</div>
</div>
</div>
</body>
</html>
`
}
Filename – validator.js: This file contain all the validation logic(Logic to validate a input field to accept only a date after a given date).
JavaScript
const {check} = require("express-validator")
const repo = require("./repository")
module.exports = {
validateEndDate :
check("edate")
// To delete leading and trailing space
.trim()
// Custom validator
.custom((edate, {req}) => {
// Fetch year, month and day of respective
// dates
const [sd, sm, sy]
= req.body.sdate.split("/")
const [ed, em, ey] = edate.split("/")
// Constructing dates from given string date
// input
const startDate = new Date(sy, sm, sd)
const endDate = new Date(ey, em, ed)
// Validate end date so that it must after
// start date
if (endDate <= startDate)
{
throw new Error(
"End date of project must be after start date")
}
return true
})
}
Files – package.json & datastore.json
Output:
Database after successful form submission:
Database after successful submission oNote: We have used some Bulma classes(CSS framework) in the signup.js file to design the content.
Similar Reads
How to Validate Data using express-validator Module in Node.js ? Validation in node.js can be easily done by using the express-validator module. This module is popular for data validation. There are other modules available in market like hapi/joi, etc but express-validator is widely used and popular among them.Steps to install express-validator module:Â Â You can
3 min read
How to validate if input in input field is a valid date using express-validator ? In HTML forms, we often required validation of different types. Validate existing email, validate password length, validate confirm password, validate to allow only integer inputs, these are some examples of validation. In a certain input field, only a valid date is allowed i.e. there is not allowed
4 min read
How to validate if input in input field must contains a seed word using express-validator ? In HTML forms, we often required validation of different types. Validate existing email, validate password length, validate confirm password, validate to allow only integer inputs, these are some examples of validation. In a certain input field, we often need to validate input so that it must contai
5 min read
How to compare password and confirm password inputs using express-validator ? Registration or Sign Up on any website always requires a confirmed password input and it must be the same as the password. It is basically to ensure that the user enters the password full of his senses and there is no conflict happening. This functionality can be implemented anywhere in our code lik
4 min read
How to Validate Data using validator Module in Node.js ? The Validator module is popular for validation. Validation is necessary to check whether the data is correct or not, so this module is easy to use and validates data quickly and easily. Feature of validator module: It is easy to get started and easy to use.It is a widely used and popular module for
2 min read
How to validate if input in input field has ASCII characters using express-validator ? In HTML forms, we often required validation of different types. Validate existing email, validate password length, validate confirm password, validate to allow only integer inputs, these are some examples of validation. In a certain input field, only Ascii characters are allowed i.e. there is not al
4 min read
How to validate if input in input field has full width string only using express-validator ? In HTML forms, we often required validation of different types. Validate existing email, validate password length, validate confirm password, validate to allow only integer inputs, these are some examples of validation. In a certain input field, only full-width strings are allowed. We can also valid
4 min read
How to validate if input in input field has alphabets only using express-validator ? In HTML forms, we often required validation of different types. Validate existing email, validate password length, validate confirm password, validate to allow only integer inputs, these are some examples of validation. In a certain input field, only alphabets are allowed i.e. there not allowed any
5 min read
Working with forms using Express.js in Node.js In this article, we will be working with forms using ExpressJS in NodeJS.Using server side programming in Node.js, we can create forms where we can put certain parameters which upon filling gets stored in the database.Setting up environment:You can refer to this website for downloading Node.js. Alon
3 min read
How to validate if input in input field has boolean value using express-validator ? In HTML forms, we often required validation of different types. Validate existing email, validate password length, validate confirm password, validate to allow only integer inputs, these are some examples of validation. In a certain input field, only boolean value i.e. true or false are allowed. We
4 min read