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 lowercase letters are allowed. We can also validate these input fields to accept only lowercase letters 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.
- Validate input by validateInputField: check(input field name) and chain on validation isLowercase() with ‘ . ‘
- 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 uppercase letters.
Filename – index.js
const express = require( 'express' )
const bodyParser = require( 'body-parser' )
const {validationResult} = require( 'express-validator' )
const repo = require( './repository' )
const { validateTagName } = require( './validator' )
const formTemplet = require( './form' )
const app = express()
const port = process.env.PORT || 3000
app.use(bodyParser.urlencoded({extended : true }))
app.get( '/' , (req, res) => {
res.send(formTemplet({}))
})
app.post(
'/info' ,
[validateTagName],
async (req, res) => {
const errors = validationResult(req)
if (!errors.isEmpty()){
return res.send(formTemplet({errors}))
}
const {email, name, tname, addr, phone} = req.body
await repo.create({
'Email' :email,
'Name' :name,
'Tag name' :tname,
'address' :addr,
'Phone' :phone
})
res.send(
'<strong>Information saved successfully!</strong>' )
})
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.
const fs = require( 'fs' )
class Repository {
constructor(filename) {
if (!filename) {
throw new Error(
'Filename is required to create a datastore!' )
}
this .filename = filename
try {
fs.accessSync( this .filename)
} catch (err) {
fs.writeFileSync( this .filename, '[]' )
}
}
async getAll(){
return JSON.parse(
await fs.promises.readFile( this .filename, {
encoding : 'utf8'
})
)
}
async create(attrs){
const records = await this .getAll()
records.push(attrs)
await fs.promises.writeFile(
this .filename,
JSON.stringify(records, null , 2)
)
return attrs
}
}
module.exports = new Repository( 'datastore.json' )
|
Filename – form.js: This file contains logic to show the form to submit the data.
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=
<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= '/info' method= 'POST' >
<div>
<div>
<label class= 'label' id= 'email' >
Email
</label>
</div>
<input class= 'input' type= 'text' name= 'email'
placeholder= 'test.test1@gmail.com' for = 'email' >
</div>
<div>
<div>
<label class= 'label' id= 'name' >Name</label>
</div>
<input class= 'input' type= 'text' name= 'name'
placeholder= 'Vinit singh' for = 'name' >
</div>
<div>
<div>
<label class= 'label' id= 'tname' >
Tag Name
</label>
</div>
<input class= 'input' type= 'text' name= 'tname'
placeholder= 'solohunting' for = 'tname' >
<p class= "help is-danger" >
${getError(errors, 'tname' )}
</p>
</div>
<div>
<div>
<label class= 'label' id= 'addr' >
Address
</label>
</div>
<input class= 'input' type= 'text' name= 'addr'
placeholder= 'Howrah, West Bengal' for = 'addr' >
</div>
<div>
<div>
<label class= 'label' id= 'phone' >
Phone Number
</label>
</div>
<input class= 'input' type= 'text' name= 'phone'
placeholder= '1111122222' for = 'phone' >
</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 only allow uppercase letters).
const {check} = require( 'express-validator' )
const repo = require( './repository' )
module.exports = {
validateTagName : check( 'tname' )
.trim()
.isLowercase()
.withMessage( 'Must be all small letters' )
}
|
Filename – package.json

package.json file
Database:

Database
Output:

Attempt to submit form data when tag name input field has not all lowercase letters

Response when attempt to submit form data where tag name input field has not all lowercase letters

Attempt to submit form data when tag name input field has all lowercase letters

Response when attempt to submit form data where tag name input field has all lowercase letters
Database after successful form submission:

Database after successful submission of form
Note: We have used some Bulma classes(CSS framework) in the form.js file to design the content.
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!