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

@programmer_network/ajv

v1.0.2

Published

A JSON Schema Validator

Downloads

289

Readme

Programmer Network AJV

Programmer Network AJV is an isomorphic library that enriches AJV (Another JSON Schema Validator) with custom keywords, formats, and validation schemas. These enhancements are tailored for use in both client-side and server-side environments. The library is meticulously designed to support custom validation logic that spans from detecting profanity to validating secure strings, YouTube URLs, and text presence with specific length constraints. Fully implemented in TypeScript, it ensures type safety and integrates seamlessly into TypeScript projects.

Features

  • Custom AJV Keywords: Includes a range of custom keywords such as getBadWords, has-text, secure-string, and is-youtube-url, with more to be added.
  • Isomorphic Design: Can be utilized on both the client (browser) and server (Node.js), making it a versatile choice for full-stack development.
  • Comprehensive Validation: From profanity checks to URL validation and string security assessments, the library covers a wide array of validation needs.
  • Fully Tested: Rigorously tested to ensure reliability and performance.
  • TypeScript Support: Written in TypeScript, offering type safety and ease of integration into TypeScript projects.

Installation

To install Programmer Network AJV, use npm or yarn:

pnpm i install @programmer-network/ajv

Usage

After installation, you can import and use the custom keywords in your AJV instances. Here's an example of how to add and use a custom keyword:

import Ajv from "ajv";
import keywords from "@programmer-network/ajv";

const ajv = new Ajv();

// "register" the keywords
keywords.map((keyword: KeywordDefinition) => ajv.addKeyword(keyword));

You can use the custom keywords like you generally would:

const validate = ajv.compile({ type: "string", "secure-string": true });
const valid = validate("some data to validate !!!)02_____d");

if (!valid) {
    console.log(validate.errors);
}

Take a look at Keywords for all the available keywords. If you want more details into how the keywords are implemented, take a look at the tests for each of the utility classes.

Contributing

We welcome contributions! If you have a custom AJV keyword, format, or schema that could benefit others, please consider submitting a pull request.