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

koa-ajv-parser

v1.1.1

Published

A koa middleware for parameter validation

Downloads

1

Readme

koa-ajv-parser

node version NPM version npm download

This module provides a middleware based on ajv that validates the parameters of the http request and saves the result to ctx.state.params. The middleware will throw an error when the validation fails, so be sure to intercept and handle the errors thrown when using this middleware.

中文说明

Install

npm i koa-ajv-parser

Usage

'use strict';

const ajvParser = require('koa-ajv-parser');

const rule = {
  params: { // root property, set all properties under it that do not contain default values and optional to be required
    id: { type: 'integer', minimum: 1 },
    name: 'string', // same as name:{ type:'string' }
    phone: { type: 'string', default: '110' },
    ext: {
      type: 'object',
      properties: {
        id: { type: 'integer' },
        name: { type: 'string' },
      },
      required: [ 'id', 'name' ],
      optional: true, // not required
    },
  },
  // getParams:(ctx, properties)=>{ return json;}
}

router.get('/yourpath',ajvParser(rule), routerHandler);
//http://yourpage/yourpath?id=2&name=sachiko&ext={%22id%22%3A1,%22name%22%3A%22momoka%22}
//ctx.state.params = {id:2, name:'sachiko', phone:'110', ext:{id:1, name:'momoka'}}

Precautions

  • Only under the params object, properties can be abbreviated in the form name: 'type'
  • Only under the params object, perform JSON.parse on the parameters of type object and array and then verify
  • Only under the params object, all properties are set to required by default unless the default value is set or optional: true
  • By default, the corresponding values are obtained in the order of ctx.request.body, ctx.request.query, ctx.params, or you can change this rule by configuring the getParams function. See getCtxParams for details.

Test

npm test

Author

985ch

License

Copyright © 2019 985ch. This project is MIT licensed. This README was translate by google