
Security News
Critical Security Vulnerability in React Server Components
React disclosed a CVSS 10.0 RCE in React Server Components and is advising users to upgrade affected packages and frameworks to patched versions now.
@fortawesome/fa-icon-chooser-react
Advanced tools
React specific wrapper for @fortawesome/fa-icon-chooser
Find API References for the required callback functions in the fa-icon-chooser component documentation over here.
npm install --save @fortawesome/fa-icon-chooser-react
import ReactDOM from 'react-dom'
import { FaIconChooser } from '@fortawesome/fa-icon-chooser-react'
// One or both of these would be provided somehow by the user.
// If both are provided as propse, kitToken takes priority over version.
// If only version is present, the Icon Chooser will run with only
// Font Awesome Free with the given version.
const version = '5.15.5'
const kitToken = undefined
// Implement the required callback functions.
function handleQuery() {
// ...
}
function handleResult() {
// ...
}
function getUrlText() {
// ...
}
const chooser = <FaIconChooser
version={ version }
kitToken={ kitToken }
handleQuery={ handleQuery }
getUrlText={ getUrlText }
onFinish={ handleResult }
></FaIconChooser>
ReactDOM.render(chooser, document.body)
See also the example React app.
FAQs
React specific wrapper for @fortawesome/fa-icon-chooser
The npm package @fortawesome/fa-icon-chooser-react receives a total of 296 weekly downloads. As such, @fortawesome/fa-icon-chooser-react popularity was classified as not popular.
We found that @fortawesome/fa-icon-chooser-react demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 7 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.

Security News
React disclosed a CVSS 10.0 RCE in React Server Components and is advising users to upgrade affected packages and frameworks to patched versions now.

Research
/Security News
We spotted a wave of auto-generated “elf-*” npm packages published every two minutes from new accounts, with simple malware variants and early takedowns underway.

Security News
TypeScript 6.0 will be the last JavaScript-based major release, as the project shifts to the TypeScript 7 native toolchain with major build speedups.