Socket
Book a DemoInstallSign in
Socket

waterline-custom-validations

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

waterline-custom-validations

Library to help build validation messages that mimic the structure of waterline validation messages

latest
Source
npmnpm
Version
1.0.1
Version published
Weekly downloads
2
Maintainers
1
Weekly downloads
 
Created
Source

custom-validations

Library to help build validation messages that mimic the structure of waterline 0.10 validation messages.

This can be useful if you are already using waterline, and don't want to have to translate their structure into some other arbitrary structure.

The waterline validation error format is:

{
  invalidAttributes: {
    fieldName1: [
      { rule: 'someRuleName', message: 'some friendly rule message' },
      { rule: 'anotherRuleName', message: 'another friendly rule message' }
    ],
    fieldName2: [
      { rule: 'someRuleName', message: 'some friendly rule message' }
    ]
  }
}

actual waterline objects have a lot more properties/fields than this, as well as backwards compatibility for Sails 0.9x validation messages that use the ValidationError property to hold the validation errors. To see a full implementation of the waterline validation errors, see the WLValidationError source in Waterline

development

To run the tests, clone the repo, then

  • npm install
  • npm test

You can also get code coverage on the tests by running

npm run cover

contributing

To contribute, see CONTRIBUTING.md

license

MIT

FAQs

Package last updated on 24 Oct 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts