npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@thunder_fury/form-validate

v0.2.8

Published

form validate

Downloads

237

Readme

@thunder_fury/from-validate

Installation

  $ npm i -D @thunder_fruy/from-validate

import

import { Validate } from '@thunder_fury/form-validate';
const { Validate } = require('@thunder_fury/form-validate');

Method

| Method | return | Description | | ---- | ---- | ---- | | Validate.check({value, labelName, validateTypes }) |  {isError, errorMessage} | You can specify strings for input element and field name resolution types as parameters. An error exists and returns an error message as an object. |

validate key type

| validate method | Description | | ---- | ---- | | required | Check if there is a value | | en | English Type check | | email | Emmail Type check | | number | Number Type check | | maxLength:num | string max length check | | minLength:num | string min length check | | maxNumber:num | max number check | | minNumber:num | min number check |


customize Error message

  • You can customize the message by setting the message in the validation method key.
  • {maxLength}・{minLength}・{maxNumber}・{minNumber} The set number is returned, and {labelName} is the field passed by the user.
## default Messages
  required: '{labelName} field is required。',
  en: '{labelName} field can only contain English characters.',
  email: 'Please enter a valid {labelName} address.',
  number: '{labelName} field can only contain numbers.',
  maxLength: '{labelName} field must be {maxLength} characters or less.',
  minLength: '{labelName} field must be at least {minLength} characters.',
  maxNumber: '{labelName} must be {maxNumber} or less.',
  minNumber: '{labelName} must be {minNumber} or more.'
  • Example of error message setting in Korean
Validate.message = {
  required: '{labelName}필드는 필수 항목입니다',
  maxLength:'{labelName}필드는 {maxLength}글자 이하로 입력해주세요',
  min:'{labelName}필드는 {min}이상 입력해주세요',
  // ... skip ...
}
  • Example of error message setting in Japanese
Validate.message = {
  required: '{name}項目は必須です。',
  maxLength:'{name}は{maxLength}文字以下で入力してください',
  minNumber:'{name}は{minNumber}以上入力してください',
  // ... skip ...
}

Example of use

The code below is an example usage. First you need to set the arguments to pass to the Validate method. If the input type is verified and an error is returned for that type, an error message is displayed.

request

const result = Validate.check({'val', 'labelName', 'minLength:3 maxLength:5 required' });

response

return {
  errorMessage: "name field must be at least 3 characters."
  isError: true
}