Socket
Book a DemoInstallSign in
Socket

syncano-validate

Package Overview
Dependencies
Maintainers
2
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

syncano-validate

> Client/Server side validation library based on Laravel.

latest
npmnpm
Version
0.5.1
Version published
Maintainers
2
Created
Source

Syncano Validator

Client/Server side validation library based on Laravel.

XO code style CircleCI codecov

$ npm install syncano-validate

How to use

import {validate} from 'syncano-validate'

const data = {
  firstName: 'John',
  lastName: 'Doe',
  username: 'john.doe'
  email: 'john.doe@example.com',
  age: 43,
  gender: 'male',
  phoneNumber: '555-444-333',
  birthDate: '08/25/2017'
}

const rules = {
  firstName: 'required|min:2',
  lastName: 'required|min:2',
  username: 'required|unique:users,username',
  email: 'required|email',
  age: 'required|numeric|min:18',
  gender: 'in:male,female',
  phoneNumber: 'regex:[0-9]{3}?-?[0-9]{3}?-?[0-9]{3}',
  birthDate: 'date'
}

validate(data, rules)
  .then(() => {
    // All params valid! Continue code...
  })
  .catch(errors => {
    // Handle errors
  })

TODO:

  • After (Date)
  • Alpha Dash
  • Before (Date)
  • Between
  • Confirmed
  • Date Format
  • Different
  • Dimensions (Image Files)
  • File
  • Filled
  • Image (File)
  • In Array
  • IP Address
  • JSON
  • MIME Types
  • MIME Type By File Extension
  • Nullable
  • Not In
  • Present
  • Same
  • Size
  • String
  • Timezone
  • Unique (Database)

FAQs

Package last updated on 06 Sep 2017

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

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.