1.1.0 • Published 3 months ago

robust-validator v1.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 months ago

Robust Validator

Rule-based data validation in JS. Extendable, function-oriented, i18n-supported

Documentation

💡 Why?

Discovering a data validation library that seamlessly combines ease of use, the ability to store validation rules for future use, and robust internationalization (i18n) support is a formidable challenge. While numerous data validation libraries exist, finding one that fulfills all these criteria is often elusive. Some libraries that do meet these requirements are unfortunately no longer actively maintained.

Robust Validator was born out of the need for a versatile data validation solution that not only simplifies the validation process but also empowers developers with the flexibility to preserve and reuse validation rules. This library aims to bridge the gap by offering a user-friendly experience, ensuring your validation needs are met comprehensively.

Why choose Robust Validator? It's more than just a data validation tool; it's a commitment to providing a reliable, well-maintained, and feature-rich solution for developers who value simplicity and effectiveness in their projects.

🤞 Principles

I decided on some fundamental rules while building this library:

  • ✅︎ Every validation rule should be an independent function.
  • ✅︎ Every validation rule should be able to be used separately
  • ✅︎ All validation definition should be able to be stored anywhere (database, memory, configuration files, 3rd party API, etc) to be used later.
  • ✅︎ All validation rules should be able to be used in different languages.
  • ✅︎ Contribution to the rule set should be easy.
  • ✅︎ Should be well-documented.

🏃 Installation

The library can be installed into an existing project:

$ npm install --save robust-validator

💪 Usage

Using robust-validator is very simple.

You should just call the validate() function with data and the definition.

import { validate, setLocales, en } from "robust-validator";

setLocales(en);

const data = {
  email: "not-a-valid-email",
  name: "John",
  surname: "Doe",
};

const definition = {
  email: "required|email",
  name: "required|min:1|max:50",
  surname: "required|min:1|max:50",
};

const result = await validate(data, definition);
console.log(result);

⚖️ License

MIT License

1.1.0

3 months ago

1.0.2-canary-11

3 months ago

1.0.2-canary-10

3 months ago

1.0.2-canary-7

3 months ago

1.0.2-canary-8

3 months ago

1.0.2-canary-9

3 months ago

1.0.2-canary-1

3 months ago

1.0.2-canary-2

3 months ago

1.0.2-canary-3

3 months ago

1.0.2-canary-4

3 months ago

1.0.2-canary-5

3 months ago

1.0.2-canary-6

3 months ago

1.0.1

3 months ago

1.0.0

3 months ago

0.2.1

4 months ago

0.2.0

4 months ago

0.1.1

5 months ago

0.1.0

5 months ago