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.
react-radio-group
Advanced tools
npm install react-radio-group
Then either require('react-radio-group')
or add node_modules/react-radio-group/lib/index.js
into your HTML file (exports the RadioGroup
global).
This is your average radio buttons group:
<form>
<input type="radio" name="fruit" value="apple" />Apple
<input type="radio" name="fruit" value="orange" />Orange
<input type="radio" name="fruit" value="watermelon" />Watermelon
</form>
A few problems:
name
, type
, checked
, onChange
).checked={'apple' === this.state.selectedFruitName}
on every input.Here's a better version (full example here)
<RadioGroup name="fruit" selectedValue={this.state.selectedValue} onChange={this.handleChange}>
{Radio => (
<div>
<Radio value="apple" />Apple
<Radio value="orange" />Orange
<Radio value="watermelon" />Watermelon
</div>
)}
</RadioGroup>
Repetitive fields are either lifted onto the RadioGroup
wrapper or already implicitly set on the Radio
component, which is a simple wrapper around the radio input
.
Exposes 4 optional props:
name: String
: what you'd normally put on the radio inputs themselves.selectedValue: String | Number | Boolean
: the currently selected value. This will be used to compare against the values on the Radio
components to select the right one.onChange: Function
: will be passed the newly selected value.children: Function
: will be passed a Radio
component (a thin wrapper around input
) some fields like type
, name
and checked
already set.(Since you're getting that as the argument of your children function, you could have named it anything you wanted really.) Any prop you pass onto it will be transferred to the actual input
under the hood.
2.1.1 (August 17th 2015)
selectedValue
's type to be a boolean.FAQs
Better radio buttons.
The npm package react-radio-group receives a total of 21,146 weekly downloads. As such, react-radio-group popularity was classified as popular.
We found that react-radio-group demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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.