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

field-inspector

v0.9.2

Published

Tiny field inspector for NodeJS

Downloads

4

Readme

node-field-inspector

Tiny field inspector for NodeJS

Install

npm install field-inspector --save

Usage

var inspector = require('field-inspector');

var ti = inspector.newInstance({
    token: {},
    game_id: {
        digit: true
    },
    user_id: {
        dight: true,
        default: 0
    },
    type: {
        values: [1, 2, 3]
    },
    description: {
        trim: true,
        empty: true,
        length_max: 128
    },
    tolower: {
        tolower: true
    },
    toupper: {
        toupper: true
    }
});

var value = {
    token: 'token',
    game_id: 1110,
    type: 1,
    description: ' abc ',
    tolower: 'Is Lower',
    toupper: 'Is Upper'
};

console.log('before', JSON.stringify(value));
var rst = ti.perform(value);
console.log('after', rst, JSON.stringify(value));

Output

before {"token":"token","game_id":1110,"type":1,"description":" abc ","tolower":"Is Lower","toupper":"Is Upper"}
after {"token":"token","game_id":1110,"type":1,"description":"abc","tolower":"is lower","toupper":"IS UPPER","user_id":0}

API

newInstance(model)

Create a field-inspector instance.

the model has two struction support

  1. K/V object, V has more rules.

{remark: {empty: true}}

  1. Array(object), object require a field 'name' for K, other fields was the rules.

[{name: "remark", empty: true}]

|Key|Type|Default|Description| |---|---|---|---| |type|string|undefined|the typeof result check| |empty|boolean|false|accept empty value|, |default|stringOrNumber|undefined|the default value when empty| |candidate|string|undefined|accept empty when has another prameter| |match|string|undefined|accept value when equal another prameter| |trim|boolean|false|trim the value string| |tolower|boolean|false|convert value string to lower case| |toupper|boolean|false|convert value string to upper case| |digit|boolean|false|accept digit number value| |length|Array(number)[min,max]|undefined|accept vlaue length IN range| |length_min|number|1|accept value minimal length| |length_max|number|undefined|accept value maximal length| |word|boolean|false|accept value match Word| |regexp|string|false|accept value match regexp| |values|Array(stringOrNumber)|undefined|validate value IN Array| |range|Array(number)[min,max]|undefined|accept vlaue IN range| |range_min|number|undefined|accept minimal value| |range_max|number|undefined|accept maximal value|

perform(object)

field-inspector proform the rules, it modify the parameter object.
it return a null whe no error or a *error object when detected a error.

Error object

|Key|Type|Description| |---|---|---| |name|string|field name| |type|string|the error type|

values for error type: empty ,length, type, value, match, regexp.

{ name: 'text', type: 'regexp' }