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

redux-formkit

v4.0.0

Published

A lightweight framework for building client-side and isomorphic forms in React. Redux is optional.

Downloads

25

Readme

redux-formkit

⚠️ ATTENTION ⚠️

By default Redux-formkit does not use Redux - obviously this is not communicated well by the name. For this reason I have created react-form-composer. Version 1 is 100% compatible with this package and version 2 is an easy upgrade. It has some good features like Scopes, zero dependencies and a smaller download. See the CHANGELOG for more information.

Go to live examples, code and docs.

NPM Version NPM Downloads npm bundle size

Introduction

Redux-formkit is a lightweight, simple, and efficient solution for creating basic to complex forms in react. Use it to get and set field values, to validate and format fields, to create custom inputs and to keep track of the error count so you always know whether the form fields are all valid.

Out of the box it uses standard React state and it's easy to change from/to Redux using ReduxFormkitReduxStateProvider.

Version 3 is influenced by Informed and it was written from scratch to use Hooks.

Earlier versions were influenced by the excellent Redux-form.

Getting Started

Install with npm or yarn

npm install --save redux-formkit or yarn add redux-formkit

Create a Simple Form

import React from 'react';
import {FormStateProvider, Form, Field} from 'redux-formkit';

const MyForm = () => {  
  return (
    <FormStateProvider>
      <Form name="myForm" onSubmit={submitValues}>
        <label>First name: <Field name="firstName" component="input"/></label>
        <button>Submit</button>
      </Form>
    </FormStateProvider>
  );
};

function submitValues(values) {
  window.alert(`You submitted:${JSON.stringify(values, null, 2)}`)
}

export default MyForm;

Features

  • Small bundle size (see bundlephobia)
  • React-native support (See example)
  • Simple to use with next js (See example)
  • Isomophic support to enter values before js downloads (See example)
  • Use without Redux and switch anytime by installing redux-formkit-redux-state-provider (See example)
  • Easy to migrate from/to redux-form
  • Stores values as semantic types, eg number fields will store numbers
  • Format values, eg to put commas in numbers
  • Field-arrays for repeated rows with add/remove
  • Keeps a running error-count and valid/not valid status
  • Synchronous validation including flexible support for inter-field valiation
  • Asynchronous submit validation See example

Contributing contributions welcome

I'm keen to get feedback please let me know about any issues here


Go to live examples, code and docs.