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

fields-js

v1.0.3

Published

A very simple JS package for form validation.

Readme

Fields JS

A very simple JS package for form validation.

  • JS Framework agnostic.
  • UI-less.
  • Maximum flexibility.

Installation

npm install fields-js
# OR
yarn add fields-js

Usage

import Form from 'fields-js';

// Define your form fields. You can also save the object to state.
let fields = {
  email: {
    value: '',
    validator: ['email'],
  },
  fullname: {
    value: '',
    validator: ['required'],
  },
  password: {
    value: '',
    validator: [new RegExp('^(?=.{6,})(?=.*[a-z])(?=.*[A-Z])(?=.*[^A-Za-z 0-9]).*$')],
  },
  password_confirmation: {
    value: '',
    validator: [(text) => {
      return text == fields.password.value;
    }],
  },
};

// Initialize Fields-JS
this.form = new Form(fields);

Update A Field's Value.

// Update scoped variable (not necessary but it's great for mutating state)
fields = this.form.update('email', '[email protected]');

Validate The Form.

let { form, valid } = this.form.value();

// Update scoped variable
fields = form;

if (valid ) { 
  console.log("The Form is valid.");
} else {
  console.log("The Form has validation errors.");
}

Check Validation Status Of A Form Field.

if (fields.email.valid) {
  console.log("The email field is valid.");
}

// Check pristine status of individual form fields.
if (fields.email.touched) {
  console.log("The email field has been edited.");
}

Update Multiple Fields

let fields = this.form.updateAll({ 
  email: '[email protected]',  
  fullname: 'Email Address' 
});

Update Validator For A Field

let fields = this.form.updateAll({ 
  email: {value: '[email protected]', validator: null}
});

Create and Update Form Groups

// Define a form group with multiple fields.
let fields = {
  users: [
    {
      name: {
        value: null,
        validator: ['required'],
      },
      email: {
        value: null,
        validator: ['email'],
      }
    }
  ]
};

// Initialize Fields-JS
this.form = new Form(fields);

// Update Form Group Fields
const index = 0; // Index of the targeted field in the Form Group `users`

// Add a single field to the Form Group `users`. 
this.form.update({ users: Form.group(index, { name: 'User Name', email: 'User Email' }) });

Form.update(...) can be called repeatedly to append new fields to the form group.

Add Or Remove A Field

// Add
let fields = this.form.addField('fieldName', {value: '', validator: null});

// Remove
let fields = this.form.removeField('fieldName');

Fields can also be removed from a sub form group by specifying an index number as the second parameter.

const index = 0; // Index of the targeted field in the Form Group `users`
let fields = this.form.removeField('users', index);

Reset All Form Fields

let fields = this.form.resetAll();

A single field can also be reset using Form.reset('fieldName'). Using these methods also resets the touched value for each field to false.

License

MIT