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

@yobta/validator

v1.0.0

Published

Tree-shakable es6 validator

Downloads

181

Readme

Yobta!

A promising and ridiculously small es6 validator that tree-shakes well and respects your bundle.

Current state: work in progress

Installation

npm i @yobta/validator

Validators

  • createValidator(...rules) – returns sync validator
  • createAsyncValidator(...syncOrAsyncRules) – returns aync validator

Rules

Pipes

  • pipe(...rules) – combines several rules to one
  • asyncPipe(...syncOrAsyncRules) – combines several rules to one

Sync Rules

  • array(errorMessage) - creates a array rule, coercing unknown value to array

    • items(...rules) – validates every array item against rules
    • maxItems(limit: Number, errorMessage) – checks if a array length within a limit
    • minItems(limit: Number, errorMessage) – checks if a array length within a limit
    • unique(errorMessage) – requires array to have unique values
  • boolean(errorMessage) - creates a boolean rule

  • constant(value, errorMessage) - creates a strict equality rule

  • date(errorMessage) - creates a date rule

    • maxDate(limit: Date, errorMessage) – checks if a value within a date limit
    • minDate(limit: Date, errorMessage) – checks if a value within a date limit
  • fallback(defaultValue, ...rules) - returns a defaultValue if rules not satisfied, if no rules provided transforms '' or undefined value to a defaultValue

  • number(errorMessage) - converts a value to a finite Number or throws

    • integer(errorMessage) – checks if a value is an integer
    • maxNumber(limit: Number, errorMessage) – checks if a value within a limit
    • minNumber(limit: Number, errorMessage) – checks if a value within a limit
  • oneOf(new Set([1])), errorMessage) – checks if simple value in a set

  • shape({ key: rule }, errorMessage) – checks plain object shape

    • different('key', errorMessage) – creates a rule to check if an object key is not equal to antoher key
    • identical('key', errorMessage) – creates a rule to check if an object key is strictly equal to antoher key
  • required(errorMessage) — throws a message if a value is an empty string or undefined

  • rule((value, ctx) => {...your custom rule, return value}) — allows creating custom validation rules

  • string(errorMessage) – coerses a simple value to string or throws

    • email(errorMessage) – checks if a string value is an email
    • maxCharacters(limit: Number, errorMessage) – checks if a value length within a limit
    • minCharacters(limit: Number, errorMessage) – checks if a value length within a limit
    • slug(errorMessage) – checks if a string value is a slug
    • test(regExp, errorMessage) – checks if a value passing regExp test

Async Rules

  • asyncShape({ field: syncOrAsyncRule() }, errorMessage) – resolves valid shape

Effects

  • asyncSubmit(callback) – executes a callback for a valid form submit
  • effect(callback) – executes a callback, returns input value
  • errors(callback) – calls back with YobtaError
  • success(callback) – executes a callback whenever the current step have no errors
  • validity(callback) – maps validation errors to the form inputs, or sends current error to the callback when can't map

Transforms

  • form(errorMessage) - transforms HTMLFormElement or (form) Event to a plain object
  • rule(Number) – transforms any to number

Types

  • [+] Shape validator

  • [-] Array validator

    • [+] items
    • [-] contains (do later)
    • [+] unique
    • [+] minimum items
    • [+] maximum items
  • [-] String validator

    • [+] minimum characters
    • [+] maximum characters
    • [+] email
    • [-] href (do later)
    • [-] credit card number (do later)
    • [-] phone number (do later)
    • [-] base64 (do later)
  • [+] Number validator

    • [+] int
    • [+] minimum
    • [+] maximum
  • [+] RegExp test

  • [+] FormData

Flow Utilities

  • [+] catch
  • [+] identical
  • [+] URLSearchParams
  • [+] side effect
  • [+] validityYobta
  • [-] anyOf

We want to fulfill the front-end needs and create functional promise-based validator which is fun to work with.

General Requirements

  • Functional
  • Universal
  • Immutable
  • Sync/async
  • Coercion (https://ajv.js.org/coercion.html)

Functional requirements

  • Validate: maps, arrays, strings, numbers, booleans, dates, FormData, URLSearchParams
  • Flow control: fall-backs, side effects, logic operators, serializers

API proposals

Case 1: Store hydration

We need to get a predictable initial state from the URL, the operation should be sync and silent (no errors) and the state should be a plain object.

const getInitialState = yobta(
  urlSearchParamsYobta(),
  shapeYobta({
    currentTab: [fallback('tab-1', oneOf(()= new Set(['tab-1', 'tab-2', 'tab-3'])))],
    myModalIsOpen: [fallback(false, boolean())],
  }),
)

const initialState = getInitialState(location.search)

const myStore = createStore('name', initialState)

Case 2: Form validation

We need to get a type-safe form data, but the validation operation should be async, because we don't know if one of the fields exists in our database. This operation can produce errors and we need human friendly error messages.

async function confirmPassword (password) (
  const response = await fetch(`/api/my-endpoint?password=${password}`)
  if (!response.ok) throw new Error('Wrong password')
  return password.data.password
)

const validate = asyncYobta(
  effect(toggleFormLock),
  formYobta()
  asyncShape({
    password: [
      string(),
      asyncSubmit(verifyPassword),
    ],
    new: [
      string(),
      minYobta(6),
      maxYobta(16),
      matchYobta(passwordRegExp), // make your own RegExp
    ],
    repeat: [
      identicalYobta('new')
    ],
  }),
  asyncSubmit(sendMyFormAsJSON),
  errors(),
  validity(console.error), // https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/setCustomValidity#examples
  effect(toggleFormLock),
)

const myForm = window.getElementByID('myForm')

const [formData, errors] = await validate(myForm)

Docs

  • [-] Readme for all
  • [-] JSDoc for all

Samples

  • Ajv — Follows json-schema.org specs, great choice for a back-end
  • Yup — Popular front-end library
  • Shark-Validator — a validator es6, but class-based
  • formurai — to be researched

Docs coming soon

Kudos:

Andrey Sitnik Joe Calzaretta Jon Schlinkert John-David Dalton

Pokes:

YoptaScript