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

fogex

v0.0.27

Published

A JavaScript library for quickly and easily testing the validity or invalidity of a value.

Downloads

294

Readme

Fogex

npm version Coverage

Table of Contents

Introduction

I abbreviated the expression "Form Regular Expression" as "FOGEX" to give the library its name.

A JavaScript library for quickly and easily testing the validity or invalidity of a value.

Installation

npm install fogex

Usage

1) Use with pre-defined regex functions

isEmail

import { isEmail } from 'fogex'
isEmail('[email protected]') // true
isEmail('test@test') // false

isPhoneNumber

Use with parameter
import { isPhoneNumber } from 'fogex'
isPhoneNumber('+11234567890', 'US') // true
isPhoneNumber('1234567890', 'US') // true
isPhoneNumber('+905555555555', 'US') // true
isPhoneNumber('05555555555', 'US') // true
isPhoneNumber('5555555555', 'US') // true

isPin

Use with parameter
import { isPin } from 'fogex'
isPin('1234', '4') // true
isPin('123456', '6') // true

isCreditCard

import { isCreditCard } from 'fogex'
Default
// Accepts all card types
isCreditCard('XXXX XXXX XXXX XXXX') // true
isCreditCard('XXXXXXXXXXXXXXXX') // true
Use with parameter
isCreditCard('XXXX XXXX XXXX XXXX', 'VISA') // true
isCreditCard('XXXXXXXXXXXXXXXX', 'VISA') // true
isCreditCard('XXXX XXXX XXXX XXXX', 'MASTER') // true
isCreditCard('XXXXXXXXXXXXXXXX', 'MASTER') // true

2) Use with customPattern function

import { customPattern } from 'fogex'

a => a-z

A => A-Z

# => 0-9

! => Special Characters

? => Optional Characters

Example

customPattern('aA#!', 8, 'aA1!1234') //true
customPattern('aA?#!', 5, 'aa11\*') // true

3) Use with GeneratorPattern function

import { GeneratorPattern } from 'fogex'
const value = 'qweR123!'

const options = {
  minLength: 6,
  maxLength: 12,
  lowerCase: true,
  upperCase: true,
  number: true,
  specialCharacter: true,
}

const validator = new GeneratorPattern(options)
const isValid = validator.validate(value)

console.log(isValid) // true

Pre-defined Regex Functions

| Tables | Description | Parameter | | ----------------------------- | :------------------------------------------------------------------------------------ | ----------------------------------- | | isAscii | Check if the string contains ASCII chars only. | | isBoolean | Check if a string is a boolean. | | isCase(val, case) | Check if the string is a cases. | lower, upper, camel, pascal | | isColorCode(val, colorCode) | Check if the string is a color code. | rgb, hex, hsl | | isCreditCard(val, cardType) | Check if the string is a credit card number. The default value accepts all card types | VISA or MASTER | | isEmail | Check if the string is an email. | | isFloat | Check if the string is a float. | | isHash | Check if the string is a hash of type | | isHour(val, hourFormat) | Check if the hour format is an correct. | 12 or 24 | | isIdentityNumber(val, locale) | Check if the string is a identity number. | US or TR | | isImageUrl(val, extension) | Check if the string is a image url. The default value accepts all image extension | png, jpg, jpeg, gif | | isImei | Check if check if the string is a valid IMEI number. | | isInteger | Check if the string is an integer. | | isIp | Check if the string is an IP | | isISBN | Check if the string is an ISBN. | | isMac | Check if the string is a MAC address. | | isMd5 | Check if the string is a MD5 hash. | | isMongoId | Check if the string is a valid a MongoDB ObjectId. | | isMonth | Check if the string is a month. | | isPassword | Check if a password is strong or not. | | isPhoneNumber(val, locale) | Check if the string is a mobile phone number. | US or TR | | isPin(val, length) | Check if the string is a pin. | 4 or 6 | | isPlate(val, locale) | Check if string the format of a plate format. | US or TR | | isPort | Check if the string is a valid port number. | | isPostalCode(val, locale) | Check if the string is a postal code number. | US or TR | | isString | Check if string of a letter | | isWhiteSpace | Check if the string contains white space. |

Contribution

Fogex library is under development, and is open to suggestions and contributions.

It is publicly open for any contribution. Bug fixes, new features and extra modules are welcome.

To contribute to code: Fork the repo, push your changes to your fork, and submit a pull request.

To report a bug: Please report it using GitHub Issues.

MIT License

Copyright (c) 2024 Emre Yilmaz

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.