Socket
Socket
Sign inDemoInstall

fva

Package Overview
Dependencies
0
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    fva

A module to validate your data


Version published
Weekly downloads
2
Maintainers
1
Install size
5.69 kB
Created
Weekly downloads
 

Readme

Source

fva - Form VAlidator

A module to validate your data.


Installation

In order to use this module, run

$ npm install fva

Usage

const fva = require("fva")
const data = require("../data.json")

const jsonRules = {
    title: { required: true },
    description: { required: false },
    author: { required: true },
    authorEmail: { email: true }, 
    authorAge: { number: true }
}

const customErrorMessages = {
    title: { required: "This is a required field" },
    description: { required: "This is a required field" },
    author: { required: "This is a required field" },
    authorEmail: { email: "This is an email field" }, 
    authorAge: { number: "This is a number field" }
}
                              //The third parameter is not required
fva.validate(data, jsonRules, customErrorMessages) 
    .then(res => {
        //Do something...
    })
    .catch(err => {
        //Handle error...
    })

Preview

See a live preview here.

Keywords

FAQs

Last updated on 17 Jul 2019

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc