🚀 DAY 5 OF LAUNCH WEEK: Introducing Socket Firewall Enterprise.Learn more →
Socket
Book a DemoInstallSign in
Socket

copy-to-clipbord-ultralight

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

copy-to-clipbord-ultralight

Copy text to clipboard, only support modern browser.

latest
Source
npmnpm
Version
1.0.8
Version published
Maintainers
1
Created
Source

copy-to-clipbord-ultralight

A 🚀 ultralight tool ( 596Byte ) that can copy a string to system clipboard.

⚠️ Only support modern browser.

🔑 UMD module & ESModule, offer .d.ts file to support Typescript.

Install

npm i copy-to-clipbord-ultralight

API

function ultralightCopy(sourceStr: string): boolean

DEMO

Check demo.html in Git for more detail.

import ultralightCopy from 'copy-to-clipbord-ultralight';
// const ultralightCopy = require('copy-to-clipbord-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-clipbord-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 modern browser like Chrome, Edge, safari, etc.

You can check compatibility here https://caniuse.com/?search=execCommand%3A%20copy%20command

Keywords

clipboard

FAQs

Package last updated on 17 Jan 2021

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