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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@vue-airport/plugins-validation

v2.0.4

Published

Validation plugins for vue-airport (constraints, schema, etc.)

Readme

@vue-airport/plugins-validation

Advanced validation for VueAirport

This package provides validation and constraint plugins for the VueAirport ecosystem. It allows you to express complex business rules on data and relationships, both declaratively and functionally.

Note: The validation plugin was moved here from @vue-airport/plugins-base to improve modularity and maintainability. Please update your imports accordingly.


Table of Contents


Installation

npm install @vue-airport/plugins-validation

API

createConstraintsPlugin

Apply constraints to children registered in a VueAirport desk:

  • Uniqueness of a property
  • Cardinality (max/min count)
  • Dependencies and relationships between children
  • Custom rules (function)

Signature

function createConstraintsPlugin<T = any>(constraints: Constraint<T>[]): CheckInPlugin<T>

Constraint Typing

type ConstraintFn<T> = (child: T, children: T[]) => string | null
type ConstraintObj<T> =
  | { type: 'unique'; key: keyof T; message?: string }
  | { type: 'maxCount'; count: number; message?: string }
  | { type: 'relation'; rule: ConstraintFn<T>; message?: string }
  | { type: 'beforeCheckOut'; rule: ConstraintFn<T>; message?: string }
type Constraint<T> = ConstraintFn<T> | ConstraintObj<T>

Usage Examples

1. Simple constraints

import { useCheckIn } from 'vue-airport'
import { createConstraintsPlugin } from '@vue-airport/plugins-validation'

const constraints = [
  { type: 'unique', key: 'email', message: 'Email already used' },
  { type: 'maxCount', count: 5, message: 'Maximum 5 members' },
]

const { children } = useCheckIn({
  plugins: [createConstraintsPlugin(constraints)]
})

2. Custom business rule

const constraints = [
  (child, children) => child.role === 'admin' && children.filter(u => u.role === 'admin').length >= 2
    ? 'Maximum 2 admins'
    : null,
]

3. Dependency between items

const constraints = [
  (child, children) => child.type === 'important' && !children.some(c => c.type === 'debrief' && c.start === child.end)
    ? 'A debrief must follow an important meeting'
    : null,
]

Typing & Integration

  • Fully TypeScript compatible (generic types, static validation)
  • Integrates with useCheckIn or any VueAirport desk
  • Can be combined with other plugins (validation, history, etc.)
  • Uses onBeforeCheckIn and onBeforeCheckOut hooks to ensure business consistency

FAQ

Q: Can I inject dynamic constraints? A: Yes, constraints can be functions or objects, and can depend on business context.

Q: What happens if a constraint is violated? A: The plugin throws an exception (blocks the operation) and can return a custom error message.

Q: Can I combine multiple validation plugins? A: Yes, they are chainable and compatible.


License

MIT

🔗 Links