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 🙏

© 2026 – Pkg Stats / Ryan Hefner

dval

v1.0.5

Published

Dval: Data Validation Module

Readme

Dval: Data Validation Module

Dval is a lightweight and intuitive data validation module designed to validate data against specified schemas. With Dval, you can ensure that your data adheres to predefined structures, types, and constraints, helping you maintain data integrity and reliability in your applications.

Installation

You can install Dval using your preferred package manager. Here's how you can do it using npm:

npm install dval

Getting Started

To start using Dval for data validation, follow these simple steps:

  1. Import the module:
const dval = require('dval');
  1. Create a Schema:

    Define a schema that describes the structure and constraints for your data. You can use various validation rules to specify the expected properties, types, and conditions.

const schema = dval.object({
   name: dval.string().required(),
   age: dval.number().positive().integer(),
   email: dval.string().email(),
   // Add more validation rules as needed
});
  1. Validate Data:

    Use the schema to validate your data. Pass the data through the schema to ensure it conforms to the defined rules.

   const data = {
     name: 'John Doe',
     age: 28,
     email: '[email protected]'
   };

   const validationResult = schema.validate(data);
   if (validationResult.isValid) {
     console.log('Data is valid:', data);
   } else {
     console.error('Validation errors:', validationResult.errors);
   }

Validation Rules

Dval provides a range of validation rules that you can use to define your schemas. Some of the available rules include:

  • .string(): Validates that the value is a string.
  • .number(): Validates that the value is a number.
  • .integer(): Validates that the number is an integer.
  • .required(): Validates that the value is present.
  • .positive(): Validates that the number is positive.
  • .email(): Validates that the string is in email format.
  • .array(): Validates that the value is an array.
  • .object(): Validates that the value is an object.
  • And many more...

You can chain these rules together to create complex validation scenarios tailored to your data's requirements.

Customization

Dval also allows you to create custom validation rules and messages. This flexibility enables you to address specific validation needs unique to your project.

const customRule = dval.string().custom((value, mapping)=>{
  return value == "OK";
});

Conclusion

Dval simplifies the process of data validation by providing an easy-to-use interface to define and enforce data schemas. By integrating Dval into your projects, you can enhance data quality, reduce errors, and build more robust applications.

For more detailed information and examples, refer to the official documentation: https://github.com/nafishahmeddev/dval.

License

This project is licensed under the MIT License: https://opensource.org/licenses/MIT.