Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

copy-to-clipboard-ultralight

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

copy-to-clipboard-ultralight

Copy text to clipboard, support TypeScript. Smaller than 1kb

  • 1.0.15
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
73
decreased by-56.29%
Maintainers
1
Weekly downloads
 
Created
Source

copy-to-clipboard-ultralight

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.

Install

npm i copy-to-clipboard-ultralight

API

function ultralightCopy(sourceStr: string): boolean

DEMO

CodeSandBox online demo

Online demo

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>

Compatibility

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

Keywords

FAQs

Package last updated on 05 May 2022

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc