Giter VIP home page Giter VIP logo

ratify's Introduction

Ratify

Test Coverage Issue Count Code Climate

Promise-based attribute and model validation library.

Does:

  • validate object attributes
  • let you define custom validations
  • support asynchronous validations

Doesn't:

  • offer view binding
  • handle error message formatting
  • care what frameworks or other libraries you use

See my blog post (actual link coming soon) about this thing for a more detailed writeup -- motivation, use cases, design considerations, et cetera.

Examples

// Describe the validation function you want.
var validate = Ratify.getModelValidator({
  username: {presence: true},
  password: {presence: true, length: {minimum: 5}},
  passwordConfirmation: {confirmation: 'password'},
  email: {format: /^\w+@\w+\.\w+$/}
});

// Bring your own model attributes.
var attrs = {username: 'brian', password: 'wat?', passwordConfirmation: '', email: 'not-an-email!'};

// Validate all attributes.
validate(attrs)
  .then(function() {
    // All attributes are valid
    console.log('all OK!');
  })
  .catch(Ratify.ValidationError, function(e) {
    // Validation(s) failed. See which attributes had errors by inspecting e.errors.
    // In this case, e.errors is {password: {length: true}, passwordConfirmation: {confirmation: true}, email: {format: true}
    console.log(e.errors);
  });

// Validate individual attributes
validate(attrs, 'email')
  .then(function() {
    // Attribute is valid
    console.log('email OK');
  })
  .catch(Ratify.ValidationError, function(e) {
    // Attribute is invalid
    // e.errors is {email: {format: true}}
    console.log(e.errors);
  });

Dependencies

Just two, at this time:

Installation

I'll get this published via npm if there's interest.

ratify's People

Contributors

blangenfeld avatar

Watchers

 avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.