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

js-laravel-validation

Package Overview
Dependencies
Maintainers
1
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

js-laravel-validation

Laravel style form validation for JavaScript

  • 1.0.7
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

JS-Laravel-validation

All rules are base on documentation from https://laravel.com/docs/5.7/validation#available-validation-rules

Setup

Install: npm install js-laravel-validation

Usage

  import { validateForm } from 'js-laravel-validation'
  
  const formData = {
    username: {
      value: 'test1',
      validation: 'required|string'
    },
    password: {
      value null,
      validation: 'required|string'
    }
  }
  
  const result = validateForm({ formData });
  
  if (result.errors) {
    //handle errors
  }

API

Function NameDescription
validateForm(options)Takes a number of options to validate the specified form data
getMessage(rule, fieldData)Gets an error message for the specified rule and field data
setMessageHandler(rule, createMessage)Sets or replaces the current message handler for the specified rule
setMessageHandlers(messages)Replaces multiple message handers
getMessageHandler(rule)Returns the current message handler function for the specified rule

Function documentation to come

Missing Rules

  • active_url
    • This cannot be supported because JS does not support hostname lookups (dns_get_record in PHP)
    • This could be implemented if there was a reliable way to host a small API to do the lookup
  • date_format
  • dimensions
  • mimetypes
  • mime
  • not_regex
  • regex

Keywords

FAQs

Package last updated on 13 Nov 2018

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