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

simple-formv

v2.0.3

Published

Form validation library

Downloads

3

Readme

form-validation

Usage

Install

npm i simple-formv
import { F, v, r } from 'simple-formv'
import type { ValidationResult } from 'simple-formv'

F 함수

const validationResult: ValidationResult = F([
    v(
        'Playerunknown', 
        r.required('이름은 필수 항목입니다'), 
        r.minLength(2)('이름은 두 글자 이상입니다')
    ),
    v(
        '[email protected]', 
        r.required('이메일은 필수 항목입니다'), 
        r.email('옳바른 형식의 이메일 주소를 입력해 주세요')
    ),
])
validationResult => {
    "messages": [
        "이름은 필수 항목입니다",
        "이름은 두 글자 이상입니다",
        "옳바른 형식의 이메일 주소를 입력해 주세요"
    ],
    "isPassed": false,
    "firstMessage": "이름은 필수 항목입니다",
    "lastMessage": "옳바른 형식의 이메일 주소를 입력해 주세요",
    "orFirst": [Function],
    "orLast": [Function],
}
const result = F([...])

result.orFirst(
    () => // 폼 검증 성공시 실행되는 함수 정의,
    message => alert(message),
    // 폼 검증 실패시 첫번째 메세지를 전달
)

result.orLast(
    () => // 폼 검증 성공시 실행되는 함수 정의,
    message => alert(message),
    // 폼 검증 실패시 마지막 메세지를 전달
)

v 함수

하나의 필드를 검증하기 위한 함수로 다음과 같이 단독으로 사용 가능하다.

v(
    someValue,
    r.required('이름은 필수 항목입니다'), 
    r.minLength(2)('이름은 두 글자 이상입니다')
)

v함수는 ResultList 라는 클래스를 반환한다.

ResultList {
  _results: [
    Result { val: '이름은 필수 항목입니다', isSuccessValue: false },
    Result { val: '이름은 두 글자 이상입니다', isSuccessValue: false }
  ]
}

ResultList.toArray()

ResultList에서 검증에 실패한 항목들의 메세지만을 배열로 반환한다.

ResultList {
  _results: [
    Result { val: '이름은 필수 항목입니다', isSuccessValue: false },
    Result { val: '이름은 두 글자 이상입니다', isSuccessValue: true }
  ]
}.toArray() => ['이름은 두 글자 이상입니다']

ResultList.toResult()

ResultList에서 검증에 실패한 항목들의 Result 객체를 반환한다.

ResultList {
  _results: [
    Result { val: '이름은 필수 항목입니다', isSuccessValue: false },
    Result { val: '이름은 두 글자 이상입니다', isSuccessValue: true }
  ]
}.toArray() => [
  Result { val: '이름은 필수 항목입니다', isSuccessValue: false },
]

ResultList.getFirst()

ResultList의 첫번째 요소를 반환한다.

ResultList {
  _results: [
    Result { val: '이름은 필수 항목입니다', isSuccessValue: false },
    Result { val: '이름은 두 글자 이상입니다', isSuccessValue: false }
  ]
}.toArray() => '이름은 필수 항목입니다'

ResultList.getLast()

ResultList의 마지막 요소를 반환한다.

ResultList {
  _results: [
    Result { val: '이름은 필수 항목입니다', isSuccessValue: false },
    Result { val: '이름은 두 글자 이상입니다', isSuccessValue: false }
  ]
}.toArray() => '이름은 두 글자 이상입니다'

ResultList.isPassed()

ResultList의 모든 요소가 검증에 성공했는지 여부를 반환한다.

ResultList {
  _results: [
    Result { val: '이름은 필수 항목입니다', isSuccessValue: false },
    Result { val: '이름은 두 글자 이상입니다', isSuccessValue: false }
  ]
}.isPassed() => false

r 함수

폼을 검증하기 위한 세부적인 함수들의 집합으로 반환 값은 다음과 같으며, 각각의 함수들은 단독으로 사용할 수 있다.

// Validation passed: Success
{
    val: '검증에 성공한 값',
    isSuccessValue: true
}

// Validation failed: Fail
{
    val: '검증 실패시 메세지',
    isSuccessValue: false
}

r.required

값의 유무를 검증한다. 값이 null, undefined, 빈 문자열 인 경우 실패한다

[
  v(
    '',
    r.required('이름은 필수 항목입니다'),
  ),
]

r.email

이메일 형식을 검증한다

[
  v(
    '[email protected]',
    r.email('검증 실패 메세지'),
  ),
]

r.url

URL 형식을 검증한다

[
  v(
    'https://krafton.com',
    r.url('검증 실패 메세지'),
  ),
]

r.cellphone

01로 시작하는 한국의 휴대폰 번호의 형식을 검증한다. 옳바른 형식으로 판단하는 케이스는 다음과 같다

'010-2020-1256'
'010-202-1256'
'018-020-1413'
'01020201256'
'010 202 2156'
'0180201413'
[
  v(
    '02-784-2843',
    r.cellphone('검증 실패 메세지'),
  ),
]

r.minLength

문자열의 최소 길이 검증

[
  v(
    'Some text',
    r.minLength(5)('검증 실패 메세지')
  ),
]

r.maxLength

문자열의 최대 길이 검증

[
  v(
    'Some text',
    r.maxLength(12)('검증 실패 메세지')
  ),
]

r.gte

숫자의 크기가 지정된 값 이상인지 검증

[
  v(
    9,
    r.gte(10)('검증 실패 메세지')
  ),
]

r.lte

숫자의 크기가 지정된 값 이하인지 검증

[
  v(
    6,
    r.lte(3)('검증 실패 메세지')
  ),
]

r.gt

숫자의 크기가 지정된 값을 초과하는지 검증

[
  v(
    4,
    r.gt(3)('검증 실패 메세지')
  ),
]

r.lt

숫자의 크기가 지정된 값 미만인지 검증

[
  v(
    6,
    r.lt(6)('검증 실패 메세지')
  ),
]

r.regex

정규식 검사를 실행

[
  v(
    '크래프톤',
    r.regex(/^[가-힣]+$/)('검증 실패 메세지')
  ),
]

r.numeric

주어진 값이 숫자로만 이루어져 있는지 검증

[
  v(
    'K201',
    r.numeric('검증 실패 메세지')
  ),
]

r.alphaNumeric

주어진 값이 숫자와 알파벳 대소문자로만 이루어져 있는지 검증

[
  v(
    'Krafton2023',
    r.alphaNumeric('검증 실패 메세지')
  ),
]

r.same

주어진 값들이 모두 같은지 검증

[
  v(
    [1, 1, 1],
    r.same('검증 실패 메세지')
  ),
]

r.diff

주어진 값들이 모두 서로 다른 값인지 검증

[
  v(
    [1, 2, 3],
    r.diff('검증 실패 메세지')
  ),
]

r.custom

사용자 정의 규칙을 생성한다. 다음은 값이 배열인지 검증하는 규칙을 생성하여 적용하는 코드이다

const isArray = r.custom(value => Array.isArray(value))
...
[
  v(
    ['a', 'b', 'c'],
    isArray('검증 실패 메세지')
  ),
]