How to validate if input in input field has alphabets only using express-validator ?
Last Updated :
06 Aug, 2022
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 number or special character. We can also validate these input fields to only accept alphabets 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 the validation isAlpha() 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 an input field to only allow the alphabets.
Filename - index.js
javascript
const express = require('express')
const bodyParser = require('body-parser')
const {validationResult} = require('express-validator')
const repo = require('./repository')
const { validateFirstName, validateLastName } = require('./validator')
const signupTemplet = require('./signup')
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 to sign up
app.get('/signup', (req, res) => {
res.send(signupTemplet({}))
})
// Post route to handle form submission logic and
app.post(
'/signup',
[validateFirstName, validateLastName],
async (req, res) => {
const errors = validationResult(req)
if(!errors.isEmpty()){
return res.send(signupTemplet({errors}))
}
const {email, fn, ln, password} = req.body
await repo.create({
email,
'First Name':fn,
'Last Name': ln,
password
})
res.send('Sign Up successfully')
})
// 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) {
// The 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){
const records = await this.getAll()
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 - signup.js: This file contains logic to show sign up form.
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'>
<h1 class='title'>Sign Up<h1>
<form method='POST'>
<div>
<div>
<label class='label' id='email'>Username</label>
</div>
<input class='input' type='text' name='email'
placeholder='Email' for='email'>
</div>
<div>
<div>
<label class='label' id='fn'>First Name</label>
</div>
<input class='input' type='text' name='fn'
placeholder='First Name' for='fn'>
<p class="help is-danger">${getError(errors, 'fn')}</p>
</div>
<div>
<div>
<label class='label' id='ln'>Last Name</label>
</div>
<input class='input' type='text' name='ln'
placeholder='Last Name' for='ln'>
<p class="help is-danger">${getError(errors, 'ln')}</p>
</div>
<div>
<div>
<label class='label' id='password'>Password</label>
</div>
<input class='input' type='password' name='password'
placeholder='Password' for='password'>
</div>
<div>
<button class='button is-primary'>Sign Up</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 the alphabets).
javascript
const {check} = require('express-validator')
const repo = require('./repository')
module.exports = {
validateFirstName : check('fn')
// To delete leading and trailing space
.trim()
// Validate the minimum length of the password
// Optional for this context
.isLength({min:3})
// Custom message
.withMessage('First Name must be 3 characters long')
// Name must contains only alphabets
.isAlpha()
// Custom message
.withMessage('First Name must be alphabetic'),
validateLastName : check('ln')
// To delete leading and trailing space
.trim()
// Validate the minimum length of the password
// Optional for this context
.isLength({min:2})
// Custom message
.withMessage('Last Name must be 2 characters long')
// Name must contains only alphabets
.isAlpha()
// Custom message
.withMessage('Last Name must be alphabetic')
}
Filename - package.json
package.json file
Output:
Attempt to sign up when first name input field  not contain only alphabets
Response when attempt to sign up with input field 'first name' which not contain only alphabets
Attempt to sign up when first name and last name input fields that contains only alphabets
Response when attempt to sign up with input field 'first name', 'last name' that contains only alphabets
Database after successful Sign Up:
Database after successful Sign Up
Note: We have used some Bulma classes(CSS framework) in the signup.js file to design the content.
Similar Reads
JavaScript Tutorial JavaScript is a programming language used to create dynamic content for websites. It is a lightweight, cross-platform, and single-threaded programming language. It's an interpreted language that executes code line by line, providing more flexibility.JavaScript on Client Side: On the client side, Jav
11 min read
Web Development Web development is the process of creating, building, and maintaining websites and web applications. It involves everything from web design to programming and database management. Web development is generally divided into three core areas: Frontend Development, Backend Development, and Full Stack De
5 min read
React Interview Questions and Answers React is an efficient, flexible, and open-source JavaScript library that allows developers to create simple, fast, and scalable web applications. Jordan Walke, a software engineer who was working for Facebook, created React. Developers with a JavaScript background can easily develop web applications
15+ min read
JavaScript Interview Questions and Answers JavaScript (JS) is the most popular lightweight, scripting, and interpreted programming language. JavaScript is well-known as a scripting language for web pages, mobile apps, web servers, and many other platforms. Both front-end and back-end developers need to have a strong command of JavaScript, as
15+ min read
React Tutorial React is a JavaScript Library known for front-end development (or user interface). It is popular due to its component-based architecture, Single Page Applications (SPAs), and Virtual DOM for building web applications that are fast, efficient, and scalable.Applications are built using reusable compon
8 min read
Domain Name System (DNS) DNS is a hierarchical and distributed naming system that translates domain names into IP addresses. When you type a domain name like www.geeksforgeeks.org into your browser, DNS ensures that the request reaches the correct server by resolving the domain to its corresponding IP address.Without DNS, w
8 min read
REST API Introduction REST API stands for REpresentational State Transfer API. It is a type of API (Application Programming Interface) that allows communication between different systems over the internet. REST APIs work by sending requests and receiving responses, typically in JSON format, between the client and server.
7 min read
NodeJS Interview Questions and Answers NodeJS is one of the most popular runtime environments, known for its efficiency, scalability, and ability to handle asynchronous operations. It is built on Chromeâs V8 JavaScript engine for executing JavaScript code outside of a browser. It is extensively used by top companies such as LinkedIn, Net
15+ min read
HTML Interview Questions and Answers HTML (HyperText Markup Language) is the foundational language for creating web pages and web applications. Whether you're a fresher or an experienced professional, preparing for an HTML interview requires a solid understanding of both basic and advanced concepts. Below is a curated list of 50+ HTML
14 min read
What is an API (Application Programming Interface) In the tech world, APIs (Application Programming Interfaces) are crucial. If you're interested in becoming a web developer or want to understand how websites work, you'll need to familiarize yourself with APIs. Let's break down the concept of an API in simple terms.What is an API?An API is a set of
10 min read