Socket
Socket
Sign inDemoInstall

@hapi/joi

Package Overview
Dependencies
Maintainers
2
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@hapi/joi

Object schema validation


Version published
Weekly downloads
1.8M
decreased by-11.96%
Maintainers
2
Weekly downloads
 
Created

What is @hapi/joi?

@hapi/joi is a powerful schema description language and data validator for JavaScript. It allows you to define and validate data structures in a declarative way, making it easier to ensure that your data conforms to the expected format.

What are @hapi/joi's main functionalities?

Schema Validation

This feature allows you to define a schema for your data and validate it against that schema. The example demonstrates how to create a schema for a user object and validate an instance of that object.

const Joi = require('@hapi/joi');

const schema = Joi.object({
  username: Joi.string().alphanum().min(3).max(30).required(),
  password: Joi.string().pattern(new RegExp('^[a-zA-Z0-9]{3,30}$')),
  birth_year: Joi.number().integer().min(1900).max(2013)
});

const value = {
  username: 'abc',
  password: 'password123',
  birth_year: 1990
};

const result = schema.validate(value);
console.log(result);

Custom Error Messages

This feature allows you to customize error messages for different validation rules. The example shows how to provide custom error messages for the username and password fields.

const Joi = require('@hapi/joi');

const schema = Joi.object({
  username: Joi.string().alphanum().min(3).max(30).required().messages({
    'string.base': 'Username should be a type of text',
    'string.empty': 'Username cannot be an empty field',
    'string.min': 'Username should have a minimum length of {#limit}',
    'any.required': 'Username is a required field'
  }),
  password: Joi.string().pattern(new RegExp('^[a-zA-Z0-9]{3,30}$')).messages({
    'string.pattern.base': 'Password must be alphanumeric and between 3 to 30 characters'
  })
});

const value = {
  username: '',
  password: 'pw'
};

const result = schema.validate(value);
console.log(result.error.details);

Async Validation

This feature allows you to perform asynchronous validation, such as checking if an email is already taken in a database. The example demonstrates how to use an external async validation function within a Joi schema.

const Joi = require('@hapi/joi');

const schema = Joi.object({
  email: Joi.string().email().external(async (value, helpers) => {
    const isEmailTaken = await checkEmailInDatabase(value); // hypothetical async function
    if (isEmailTaken) {
      throw new Error('Email is already taken');
    }
    return value;
  })
});

async function validateEmail(email) {
  try {
    await schema.validateAsync({ email });
    console.log('Email is valid');
  } catch (err) {
    console.error(err.message);
  }
}

validateEmail('test@example.com');

Other packages similar to @hapi/joi

Keywords

FAQs

Package last updated on 24 Nov 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc