npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

jpv

v3.1.2

Published

Flexible and powerful JSON pattern validation library with support for complex, nested structures, array validation, and a wide range of validation patterns. Includes logical operators and strict/nullable types.

Downloads

1,678

Readme

JPV - JSON Pattern Validation

JPV is an powerful library that makes JSON validation simple and painless, especially when it comes to complex and nested structures. Whether your JSON is just a couple of key-value pairs or a deeply nested, intricate object, JPV provides an elegant and efficient solution for validation.

Usage

How to use JPV to validate JSON objects:

const jpv = require("jpv");

const object = {
  status: "OK",
  meta: {
    age: 30,
  },
};

const pattern = {
  status: /ok/i,
  meta: {
    age: (x) => x > 18,
  },
};

jpv.validate(object, pattern); // true

It provides a variety of validation patterns that are both robust and flexible, catering to the exact needs of your data structures. From precise values, regular expressions, and functions to nullable and strict types, JPV has got you covered. Logical operators like and, or, not add another layer of flexibility to meet your precise validation needs.

Warning: JPV 3.0.0 is a significant update from the previous versions of JPV. If you encounter issues with the current version, consider using JPV 2.2.2.

Installation

To install the library, use npm:

npm install jpv

Import the library as follows:

const { validate, and, or, not, forEach, strict, nullable } = require("jpv");

Or, if you prefer ES6 imports:

import { validate, and, or, not, forEach, strict, nullable } from "jpv";

Exact values

JPV allows you to specify exact values in your patterns. This means that you can define a specific value that a property in your JSON object must match exactly for the validation to pass.

Exact values can be any valid JavaScript data type, including strings, numbers, booleans, null, and even arrays and objects. This makes exact value validation a very powerful feature when you know exactly what value a property should have.

const object = {
  name: "John",
  status: true,
  version: 30,
  city: "New York",
};

const pattern = {
  name: "John",
  status: true,
  version: 30,
};

Regex

Regular expression in JPV is one of the general-purpose patterns that can be used to validate a wide variety of data types.

const object = {
  phone: "1234567890",
  name: "John",
};

const pattern = {
  phone: /^\d{10}$/,
  name: new RegExp(/^[A-Za-z]+$/),
};

Arrays

Like a object, arrays are validated by specifying a pattern for each element in the array. The pattern can be any valid JPV pattern, including exact values, regular expressions, functions, and logical operators.

const object = ['Lea', '+123456789']

const pattern = [/\w/,  /\+\d/],

Array forEach

To validate each element in an array, you can use the forEach pattern that iterates over each element in the array and validates it against the specified pattern.

const object = ["hello", "world", "example"];

const pattern = forEach(/^[a-z]+$/);

Another example of using forEach to validate an array of objects:

const object = {
  status: "OK",
  data: [
    {
      name: "John",
      age: 21,
    },
    {
      name: "Mark",
      age: 25,
    },
  ],
};

const pattern = {
  status: /ok/i,
  data: forEach({
    name: /^[\w\s]+$/,
    age: x => x > 18,
  }),
};

Functions

JPV allows for function-based validations, offering a high degree of flexibility. This lets you define custom validation logic that goes beyond exact matches and regular expressions. Function-based validations can incorporate complex conditions and external data checks.

Here's an example of function-based validation:

const pattern = {
  age: (x) => typeof x === "number" && x > 18,
};

Nullable

In JSON validation, you may come across properties that can be either null or undefined, or follow a certain pattern. In such cases, the nullable pattern in JPV comes in handy.

The nullable pattern allows the property value to be either null or undefined, or to match the provided condition.

Here's an example:

const pattern = {
  address: nullable({
    street: /^[\w\s]+$/,
    city: /^[\w\s]+$/,
    country: /^[\w\s]+$/,
  }),
};

Strict

In strict mode, every key in the JSON object must have a corresponding key in the pattern. If the object has extra keys that are not present in the pattern, validation will fail. Similarly, if the object is missing keys that are present in the pattern, validation will fail. This ensures the object structure precisely mirrors the pattern structure. Samilar requirements are also applied to arrays.

const pattern = {
  address: strict({
    street: /^[\w\s]+$/,
    city: /^[\w\s]+$/,
    country: /^[\w\s]+$/,
  }),
};

Operators (and, or, not)

JPV provides three logical operators: and, or, and not. These operators allow you to create complex validation conditions by combining different patterns. Each operator can be used with any type of pattern, offering great flexibility in constructing your validation rules.

  and(patternA, patternB, ...)
  or(patternA, patternB, ...)
  not(pattern)

Pay attention to arguments, each argument itself can be a pattern or a function that returns a pattern. This allows you to create complex validation rules that can handle a wide variety of scenarios.

  and(patternA, or( patternB1, patternB2 ), not(patternC),...)

In summary, JPV's logical operators allow for a powerful and flexible way to create complex validation rules that can handle a wide variety of scenarios.

const pattern = {
  url: and(/^https:/, not(/^http:/)),
  employeeId: and(not(/^admin$/), (x) => typeof x === "string"),
  emailOrPhone: or(/^\w+@\w+\.\w+$/, /^\d{10}$/),
};

Type validation

To facilitate type validation, we can create a helper function is. This function accepts a type as a parameter and returns a new function. This returned function, when given a value, compares the type of the value with the expected type, returning a boolean result.

const is = (type) => (value) => typeof value === type;

const pattern = {
  name: is("string"),
};

Changlog

This version (3.x) of jpv introduces a number of changes from the previous versions (2.x). Here's a summary of the changes:

  • Cleaner and more intuitive API.
  • New logical operators and, or, not.
  • New strict and nullable pattern types.
  • Nested object validation.
  • forEach pattern for validating arrays.