New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

rapid-form

Package Overview
Dependencies
Maintainers
1
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rapid-form

The best way to make a rapid form with react hooks

latest
Source
npmnpm
Version
3.1.0
Version published
Weekly downloads
1.3K
5.31%
Maintainers
1
Weekly downloads
 
Created
Source

Rapid Form

NPM

The rapid-form npm package is a tool designed to simplify the creation and management of forms in web applications. It provides a streamlined way to handle form state, validation, and submission, making it easier for developers to implement complex forms without having to write repetitive boilerplate code.

Please refer to the interactive documentation that will provide you with all the necessary information about the involved hook and help you get started in a snap.

Installation

  # NPM
  npm install rapid-form

  # YARN
  yarn add rapid-form

  #PNPM
  pnpm add rapid-form

Quick Start


import { useRapidForm } from 'rapid-form'

function App() {
  const { refValidation, errors } = useRapidForm()

  const  handleSubmit = () => {
    // check errors
  }

  return (
    <form
      id="rapidForm"
      ref={(ref) => {
        refValidation(ref)
      }}
      autoComplete="off"
      onSubmit={handleSubmit}
    >
      <input name="username" placeholder="Username" required />
      {errors.username?.message}
      // OR
      {errors.username && yourI18Label[errors.username.code]}
      <label>Email:</label>
      <input name="email" type="email" required />
      {errors.email?.message}
      <label>Age:</label>
      <input name="age" required pattern="\d+" />
      {errors.age?.message}
      <button type="submit">Submit</button>
    </form>
  )
}

Contributors

Any contribution is appreciated. You can get started with the steps below:

  • Fork this repository (learn how to do this here).

  • Clone the forked repository.

  • Make your changes and create a pull request (learn how to do this).

  • I will attend to your pull request and provide some feedback.

Need help?

Ping me on Twitter

License

This repository is licensed under the MIT License.

Sponsor

Don't be shy! 😜

:heart: Sponsor

Keywords

rapid-form

FAQs

Package last updated on 02 Aug 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts