Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@kofile/react-form
Advanced tools
import React from 'react'
import Form from '@kofile/react-form'
class MyForm extends React.Component {
genericValidate = v => v ? '' : 'error message'
isPhoneNumber = v => {
/* some regex magic */
return isNumber ? '' : 'error message'
}
handleSubmit = ({ formValues, formErrors, isValid }) => {
if (!isValid) {
return handleErrors(formErrors)
}
return handleSuccess(formValues)
}
render() {
return (
<div>
<h2>My Awesome Form!</h2>
<Form onSubmit={this.handleSubmit} validate={this.genericValidate} validateOn='onBlur'>
<Form.Field id="name">
{({ getInputProps, getLabelProps, getErrorProps }) => {
const { value, id, ...props } = getInputProps()
const { htmlFor, ...labelProps } = getLabelProps()
const { error } = getErrorProps()
return (
<label htmlFor={htmlFor}>Your Name Is?</label>
<input id={id} value={value} {...props} />
)
}}
</Form.Field>
<Form.Field id="age">
{({ getInputProps, getLabelProps, getErrorProps }) => {
const { value, id, ...props } = getInputProps()
const { htmlFor, ...labelProps } = getLabelProps()
const { error } = getErrorProps()
return (
<label htmlFor={htmlFor}>Your age Is?</label>
<input id={id} value={value} type="number" {...props} />
)
}}
</Form.Field>
<Form.Field id="location">
{({ getInputProps, getLabelProps, getErrorProps }) => {
const { value, id, ...props } = getInputProps()
const { htmlFor, ...labelProps } = getLabelProps()
const { error } = getErrorProps()
return (
<label htmlFor={htmlFor}>Your location Is?</label>
<textarea id={id} value={value} {...props} />
)
}}
</Form.Field>
</Form>
</div>
)
}
}
FAQs
A form abstraction for react
The npm package @kofile/react-form receives a total of 0 weekly downloads. As such, @kofile/react-form popularity was classified as not popular.
We found that @kofile/react-form demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 38 open source maintainers 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.