Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
a-plus-forms
Advanced tools
I love making forms. Forms are fantastic usage of my time
-- Nobody ever
Sick of overly complex form libraries in React? The ones that promise simplicity,
but you end up bashing your head against the wall in couple of weeks? Well, allow
me introduce you to the A+ forms
, a react forms library that you would use again.
Remember how nice and easy forms were when HTML was static? You'd just have a
form
tag, and a couple of input
tags, and it would simply send your data
where it supposed to go. Well, A+ forms
gives you exactly that type of
development experience back:
import { Form, TextInput, PasswordInput } from 'a-plus-forms';
const signIn = ({ username, password }) => {
axios.post('/signin', { username, password });
};
<Form onSubmit={signIn}>
<TextInput name="username" label="Username" />
<PasswordInput name="password" label="Password" />
<button type="submit">Sign In</button>
</Form>
The goal of the A+ forms
is to be as close to the original HTML forms API and
declarative coding style that everyone knows and loves. The idea is to give
developers the stability of well known interfaces paired with covering the needs
of the modern front end development practices.
Tell me more! @nemshilov
All source code in this repository released under the terms of the ISC license.
Copyright (C) 2017 Nikolay Nemshilov
FAQs
A+ forms. Would use again
The npm package a-plus-forms receives a total of 171 weekly downloads. As such, a-plus-forms popularity was classified as not popular.
We found that a-plus-forms demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.