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

mdc-validator

v1.0.1

Published

Un validateur de schéma simple et puissant pour JavaScript

Downloads

110

Readme

MDC-Validator

Un validateur de schéma simple et puissant pour JavaScript/TypeScript

Installation

npm install mdc-validator

Guide d'utilisation rapide

import MDCValidator from 'mdc-validator';

// Exemple de validation d'un formulaire utilisateur
const userSchema = new MDCValidator()
  .string()
  .required()
  .min(3)
  .max(50);

const result = userSchema.validate({
  field_0: 'John'
});

console.log(result);
// { isValid: true, errors: {} }

Types de validation disponibles

String

const schema = new MDCValidator()
  .string()        // Définit le type comme string
  .required()      // Rend le champ obligatoire
  .min(3)         // Longueur minimale
  .max(50)        // Longueur maximale
  .pattern(/^[a-z]+$/i);  // Expression régulière

Number

const schema = new MDCValidator()
  .number()
  .required()
  .min(0)     // Valeur minimale
  .max(100);  // Valeur maximale

Boolean

const schema = new MDCValidator()
  .boolean()
  .required();

Validation personnalisée

Vous pouvez ajouter vos propres règles de validation :

const schema = new MDCValidator()
  .string()
  .custom((value) => {
    if (value === 'mot_interdit') {
      return 'Ce mot n\'est pas autorisé';
    }
    return true;
  });

Exemples pratiques

Validation d'un email

const emailSchema = new MDCValidator()
  .string()
  .required()
  .pattern(/^[^\s@]+@[^\s@]+\.[^\s@]+$/);

const result = emailSchema.validate({
  field_0: '[email protected]'
});

Validation d'un mot de passe fort

const passwordSchema = new MDCValidator()
  .string()
  .required()
  .min(8)
  .custom((value) => {
    if (!/[A-Z]/.test(value)) {
      return 'Le mot de passe doit contenir au moins une majuscule';
    }
    if (!/[0-9]/.test(value)) {
      return 'Le mot de passe doit contenir au moins un chiffre';
    }
    if (!/[!@#$%^&*]/.test(value)) {
      return 'Le mot de passe doit contenir au moins un caractère spécial';
    }
    return true;
  });

Structure des erreurs

Le validateur retourne toujours un objet avec cette structure :

{
  isValid: boolean;
  errors: {
    [field: string]: string;
  }
}

Exemple avec erreurs :

const schema = new MDCValidator()
  .string()
  .required()
  .min(3);

const result = schema.validate({
  field_0: 'a'
});

console.log(result);
// {
//   isValid: false,
//   errors: {
//     field_0: 'La valeur minimale est 3'
//   }
// }

Messages d'erreur personnalisés

Les messages d'erreur par défaut sont en français. Voici les messages standards :

  • Required: "Ce champ est requis"
  • Type: "Le type doit être {type}"
  • Min: "La valeur minimale est {min}"
  • Max: "La valeur maximale est {max}"
  • Pattern: "La valeur ne correspond pas au format requis"

Fonctionnalités avancées

Nommage explicite des champs

const schema = new MDCValidator()
  .field('email')    // Le champ sera identifié comme 'email' au lieu de 'field_0'
  .string()
  .required();

Transformation des valeurs

const schema = new MDCValidator()
  .string()
  .transform(value => value.toLowerCase())  // Convertit la valeur en minuscules avant validation
  .pattern(/^[a-z]+$/);

Validation conditionnelle

const schema = new MDCValidator()
  .field('password')
  .string()
  .whenField('userType', 'admin', {
    min: 12,  // Pour les admins, mot de passe de 12 caractères minimum
  }, {
    min: 8    // Pour les autres, 8 caractères minimum
  });

Validation de dates

const schema = new MDCValidator()
  .date()
  .required()
  .future()           // La date doit être dans le futur
  .dateFormat('YYYY-MM-DD');

// Ou pour une date dans le passé
const birthDateSchema = new MDCValidator()
  .date()
  .past()            // La date doit être dans le passé
  .required();

Validation d'égalité et d'inclusion

const schema = new MDCValidator()
  .string()
  .equals('valeur_attendue')    // Doit être exactement égal
  .notEquals('valeur_interdite') // Ne doit pas être égal
  .isIn(['option1', 'option2']) // Doit être l'une de ces valeurs
  .notIn(['interdit1', 'interdit2']); // Ne doit pas être l'une de ces valeurs

Contribution

Les contributions sont les bienvenues ! N'hésitez pas à ouvrir une issue ou une pull request.

Licence

MIT