
Security News
Package Maintainers Call for Improvements to GitHub’s New npm Security Plan
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
copy-to-clipboard-ultralight
Advanced tools
Copy text to clipboard, support TypeScript. Smaller than 1kb
Language : English | 中文
🚀 A ultralight tool ( 596Byte ) that can copy a string to system clipboard.
💫 Wide browser support, for example IE >= 9.
📦 UMD module & ESModule, offer .d.ts file to support Typescript.
npm i copy-to-clipboard-ultralight
function ultralightCopy(sourceStr: string): boolean
Check demo.html
in Git for more detail.
import ultralightCopy from 'copy-to-clipboard-ultralight';
// const ultralightCopy = require('copy-to-clipboard-ultralight') // import as commonJS module
document.querySelector('#test').addEventListener('click',()=> {
if (ultralightCopy('This is test string.')) {
alert('success !')
} else {
alert('copy failed !')
}
})
<script src="https://cdn.jsdelivr.net/npm/copy-to-clipboard-ultralight"></script>
<script>
document.querySelector('#test').addEventListener('click',()=> {
if (ultralightCopy('This is test string.')) {
alert('success !')
} else {
alert('copy failed !')
}
})
</script>
We would try to use document.execCommand('copy')
with NO FALLBACK. So this tool only support browser like Chrome, Edge, safari, IE >= 10, etc.
I suggest you to run Online demo in your target browser, or check compatibility here https://caniuse.com/?search=execCommand%3A%20copy%20command
FAQs
Copy text to clipboard, support TypeScript. Smaller than 1kb
The npm package copy-to-clipboard-ultralight receives a total of 76 weekly downloads. As such, copy-to-clipboard-ultralight popularity was classified as not popular.
We found that copy-to-clipboard-ultralight 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
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.