Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
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
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
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.