straints

0.7.2 • Public • Published

straints

npm version

Straints is a javascript object validator. Validation rules are declaratively defined in a JSON file.

Install.

npm install straints --save

Example usage.

import straints from 'straints';
import alyze from 'alyze';
 
let schema =
{
    "create_user":
    {
        "constrain":
        {
            "name": [ "exists" ],
            "email": [ "exists", "email" ]  
        }
    }
};
 
let instance = straints({ schema, validator: alyze.create() });
 
let target =
{
    "name": "Fred",
    "email": "fred@flintstone.com"
};
 
instance.validate(target, 'create_user').then(results =>
{
    if (results.valid())
        console.log('Validation Success!');
    else
        console.log('Validation Failed!');
});

You can find full Straints documentation at the "homepage" link below.

Please use "feedback" to report any issues and "updates" for release info.

{ homepage } { updates } { feedback } { license } { versioning }

Happy Validating!

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
0.7.25latest

Version History

VersionDownloads (Last 7 Days)Published
0.7.25
0.7.13
0.7.02
0.6.01
0.5.31
0.5.22
0.5.11
0.5.01
0.4.01
0.3.41
0.3.31
0.3.21
0.3.11
0.3.01
0.2.11
0.2.02
0.1.01
0.0.41
0.0.31
0.0.21
0.0.11

Package Sidebar

Install

npm i straints

Weekly Downloads

30

Version

0.7.2

License

MIT

Unpacked Size

243 kB

Total Files

59

Last publish

Collaborators

  • captison