Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
simple-react-clipboard
Advanced tools
A simple and flexible React utility component for copying texts to the clipboard.
A simple and flexible React utility component for copying texts to the clipboard.
The component passed in the render
prop will have the copy
function passed in as a prop.
The copy
function will copy the text
prop to the clipboard.
import React from "react";
import Clipboard from "simple-react-clipboard";
const Demo = () => (
<Clipboard
text={"Copy on Button Click"}
render={({copy}) => <button onClick={copy}>Copy</button>}
/>
)
export default Demo;
Demo and sample code can be found here.
render: PropTypes.func.isRequired text: PropTypes.string.isRequired props: PropTypes.object onSuccess: PropTypes.func onError: PropTypes.func
Name | Type | Description | Required |
---|---|---|---|
render | function | A function that returns a React element. | Y |
text | string | The text to be copied when copy is called. | Y |
props | object | props to pass to the component in render | N |
onSuccess | function | Function called after when copy succeeds. | N |
onError | function | Function called after copy fails. | N |
FAQs
A simple and flexible React utility component for copying texts to the clipboard.
The npm package simple-react-clipboard receives a total of 1,116 weekly downloads. As such, simple-react-clipboard popularity was classified as popular.
We found that simple-react-clipboard 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
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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.