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

@beberiche/validator

v0.3.0

Published

유효성 검사를 위한 npm 패키지 생성하기

Downloads

38

Readme

npm-validator-module

사용자 입력 정보를 바탕으로 유효성 검사의 결과를 제공합니다.
@beberiche/validator 바로가기

Methods

isEmail

feature : 입력된 문자열이 이메일 형식인지 확인합니다.
source : - main.ts

Parmeters |Name|Type|Description| |----|----|---------| |inputValue|string|유효성 검사를 진행할 입력 값 입니다.|

example

import { isEmail } from '@beberiche/validator';

let ret = isEmail('asdf');
console.log(ret); // Error : 올바른 이메일 형식이 아닙니다.
ret = isEmail('[email protected]');
console.log(ret); // true

isPassword

feature : 입력된 문자열이 설정한 비밀번호 형식과 알맞는지 확인합니다.
source : - main.ts

Parmeters |Name|Type|Attributes|Description| |----|----|----|---------| |inputValue|string||유효성 검사를 진행할 입력 값 입니다.| |options|number|optional|비밀번호 형식을 설정합니다.|

examples

import { isPassword } from '@beberiche/validator';

let ret = isPassword('asdf'); // 기본값 0, 영문자만 검사
console.log(ret); // true
ret = isPassword('asdfadsf123', 1); // 1, 영문자 및 숫자 포함
console.log(ret); // true
ret = isPassword('asdfadsf123', 2); // 2, 영문자, 숫자 그리고 특수문자 포함
console.log(ret); // undefined
// Error: 설정한 비밀번호 형식과 일치하지 않습니다.

isPhoneNumber

feature : 입력된 문자열이 휴대폰 번호 혹은 전화번호 형식에 알맞는지 확인합니다. source : - main.ts

Parmeters |Name|Type|Description| |----|----|---------| |inputValue|string|유효성 검사를 진행할 입력 값 입니다.|

examples

import { isPhoneNumber } from '@beberiche/validator';

let ret = isPhoneNumber('010-1234-4567');
console.log(ret); // true
ret = isPhoneNumber('02-123-4567');
console.log(ret); // true
ret = isPhoneNumber('01744021234');
console.log(ret); // true
ret = isPhoneNumber('01234567890');
// Error : 올바른 휴대폰 번호 혹은 전화번호 형식이 아닙니다.

lenLimit

feature : 입력값이 유효 길이 범위안에 속해 있는지 체크합니다.
source : - main.ts

Parmeters |Name|Type|Description| |----|----|---------| |inputValue|string|유효성 검사를 진행할 입력 값 입니다.| |len1|number|유효 길이에 대한 시작 값 입니다. (이상)| |len2|number|유효 길이에 대한 끝 값 입니다. (미만)|

examples

import { lenLimit } from '@beberiche/validator';

let ret = lenLimit('asdf', 2, 8); // 2이상 8미만
console.log(ret); // true
ret = lenLimit('sadfa', 6, 8);
console.log(ret); // undefined
// Error : 입력값이 주어진 범위에 포함되지 않습니다.

lenLimitMore

feature : 입력값의 길이가 주어진 유효범위 이상인지 확인합니다.
source : - main.ts

Parmeters |Name|Type|Description| |----|----|---------| |inputValue|string|유효성 검사를 진행할 입력 값 입니다.| |len|number|유효 길이에 대한 시작 값 입니다. (이상)|

examples

import { lenLimitMore } from '@beberiche/validator';

let ret = lenLimitMore('asdf', 3); // 3이상
console.log(ret); // true
ret = lenLimitMore('asdf', 5); // undefined
// Error : 주어진 제한 길이보다 입력 값이 작습니다.

lenLimitUnder

feature : 입력값의 길이가 주어진 유효범위 미만인지 확인합니다.
source : - main.ts

Parmeters |Name|Type|Description| |----|----|---------| |inputValue|string|유효성 검사를 진행할 입력 값 입니다.| |len|number|유효 길이에 대한 끝 값 입니다. (미만)|

examples

import { lenLimitUnder } from '@beberiche/validator';

let ret = lenLimitUnder('asd', 8);
console.log(ret); // true
ret = lenLimitUnder('asdf', 4);
// Error : 주어진 제한 길이보다 입력 값이 큽니다.