Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

fva

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fva

A module to validate your data

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
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

Package last updated on 17 Jul 2019

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc